diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-29 14:01:06 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-29 14:01:06 -0400 |
commit | ea349cdfbfa4d42110099e49a8ff23f7213cd5b6 (patch) | |
tree | aca4c6c7646207fe295197695b0cf87ee2a46913 /themes/classic/source/_includes/asides | |
parent | ce6621724c8d13530681724528b22e1c381f0dc2 (diff) | |
download | my_new_personal_website-ea349cdfbfa4d42110099e49a8ff23f7213cd5b6.tar.xz my_new_personal_website-ea349cdfbfa4d42110099e49a8ff23f7213cd5b6.zip |
Moved themes to .themes to get it out of the way. Updated Rakefile to support .themes dir and remove duplication. Improved deploy task. Renamed init_deploy to cofig_deploy and rewrote it to update configurations in the Rakefile for easier deploy use
Diffstat (limited to 'themes/classic/source/_includes/asides')
4 files changed, 0 insertions, 57 deletions
diff --git a/themes/classic/source/_includes/asides/delicious.html b/themes/classic/source/_includes/asides/delicious.html deleted file mode 100644 index 307a2e94..00000000 --- a/themes/classic/source/_includes/asides/delicious.html +++ /dev/null @@ -1,7 +0,0 @@ -{% if site.delicious_user %} -<section> - <h1>On Delicious</h1> - <script type="text/javascript" src="http://feeds.delicious.com/v2/js/{{ site.delicious_user }}?title=&count={{ site.delicious_count }}&sort=date&extended"></script> - <p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks »</a></p> -</section> -{% endif %} diff --git a/themes/classic/source/_includes/asides/pinboard.html b/themes/classic/source/_includes/asides/pinboard.html deleted file mode 100644 index 1cbb1379..00000000 --- a/themes/classic/source/_includes/asides/pinboard.html +++ /dev/null @@ -1,19 +0,0 @@ -{% if site.pinboard_user %} -<section> - <h1>My Pinboard</h1> - <ul id="pinboard_linkroll">Fetching linkroll...</ul> - <p><a href="http://pinboard.in/u:{{ site.pinboard_user }}">My Pinboard Bookmarks »</a></p> -</section> -<script type="text/javascript"> - var linkroll = 'pinboard_linkroll'; //id target for pinboard list - var pinboard_user = "{{ site.pinboard_user }}"; //id target for pinboard list - var pinboard_count = {{ site.pinboard_count }}; //id target for pinboard list - (function(){ - var pinboardInit = document.createElement('script'); - pinboardInit.type = 'text/javascript'; - pinboardInit.async = true; - pinboardInit.src = '/javascripts/pinboard.js'; - document.getElementsByTagName('head')[0].appendChild(pinboardInit); - })(); -</script> -{% endif %} diff --git a/themes/classic/source/_includes/asides/recent_posts.html b/themes/classic/source/_includes/asides/recent_posts.html deleted file mode 100644 index ad3c7cc0..00000000 --- a/themes/classic/source/_includes/asides/recent_posts.html +++ /dev/null @@ -1,12 +0,0 @@ -{% if page.single and site.recent_posts %} -<section> - <h1>Recent Posts</h1> - <ul id="recent_posts"> - {% for post in site.posts limit: site.recent_posts %} - <li class="post"> - <a href="{{ post.url }}">{{ post.title }}</a> - </li> - {% endfor %} - </ul> -</section> -{% endif %} diff --git a/themes/classic/source/_includes/asides/twitter.html b/themes/classic/source/_includes/asides/twitter.html deleted file mode 100644 index 15cab8bc..00000000 --- a/themes/classic/source/_includes/asides/twitter.html +++ /dev/null @@ -1,19 +0,0 @@ -{% if site.twitter_user %} -<section> - <h1>Latest Tweets</h1> - <ul id="tweets"> - <li class="loading">Status updating...</li> - </ul> - <script type="text/javascript"> - $.domReady(function(){ - getTwitterFeed("{{site.twitter_user}}", {{site.twitter_tweet_count}}, {{site.twitter_show_replies}}); - }); - </script> - <script src="/javascripts/twitter.js" type="text/javascript"> </script> - {% if site.twitter_follow_button %} - <a href="http://twitter.com/{{ site.twitter_user }}" class="twitter-follow-button" data-width="208px" data-show-count="{{ site.twitter_show_follower_count }}">Follow @{{ site.twitter_user }}</a> - {% else %} - <p>Follow <a href="http://twitter.com/{{site.twitter_user}}">@{{ site.twitter_user }}</a></p> - {% endif %} -</section> -{% endif %} |