diff options
author | Zhiming Wang <zmwangx@gmail.com> | 2015-05-04 14:55:10 -0700 |
---|---|---|
committer | Zhiming Wang <zmwangx@gmail.com> | 2015-05-04 14:55:10 -0700 |
commit | 301679861a2440a10c9eac746cec86459f445ef9 (patch) | |
tree | 5aad22ead01cf0da226623f603f33867896c0fea /.themes/classic/source/_includes/asides | |
parent | d0a07c64afba47bbe8bfb56ba9893296a73fc7db (diff) | |
download | my_new_personal_website-301679861a2440a10c9eac746cec86459f445ef9.tar.xz my_new_personal_website-301679861a2440a10c9eac746cec86459f445ef9.zip |
remove all Octopress stuff
Diffstat (limited to '.themes/classic/source/_includes/asides')
5 files changed, 0 insertions, 78 deletions
diff --git a/.themes/classic/source/_includes/asides/delicious.html b/.themes/classic/source/_includes/asides/delicious.html deleted file mode 100644 index 115cdcbc..00000000 --- a/.themes/classic/source/_includes/asides/delicious.html +++ /dev/null @@ -1,8 +0,0 @@ -{% if site.delicious_user %} -<section> - <h1>On Delicious</h1> - <div id="delicious"></div> - <script type="text/javascript" src="http://feeds.delicious.com/v2/json/{{ site.delicious_user }}?count={{ site.delicious_count }}&sort=date&callback=renderDeliciousLinks"></script> - <p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks »</a></p> -</section> -{% endif %}
\ No newline at end of file diff --git a/.themes/classic/source/_includes/asides/github.html b/.themes/classic/source/_includes/asides/github.html deleted file mode 100644 index b0bf9596..00000000 --- a/.themes/classic/source/_includes/asides/github.html +++ /dev/null @@ -1,30 +0,0 @@ -{% if site.github_user %} -<section> - <h1>GitHub Repos</h1> - <ul id="gh_repos"> - <li class="loading">Status updating...</li> - </ul> - {% if site.github_show_profile_link %} - <a href="https://github.com/{{site.github_user}}">@{{site.github_user}}</a> on GitHub - {% endif %} - <script type="text/javascript"> - $(document).ready(function(){ - if (!window.jXHR){ - var jxhr = document.createElement('script'); - jxhr.type = 'text/javascript'; - jxhr.src = '{{ root_url}}/javascripts/libs/jXHR.js'; - var s = document.getElementsByTagName('script')[0]; - s.parentNode.insertBefore(jxhr, s); - } - - github.showRepos({ - user: '{{site.github_user}}', - count: {{site.github_repo_count}}, - skip_forks: {{site.github_skip_forks}}, - target: '#gh_repos' - }); - }); - </script> - <script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script> -</section> -{% endif %} diff --git a/.themes/classic/source/_includes/asides/googleplus.html b/.themes/classic/source/_includes/asides/googleplus.html deleted file mode 100644 index 00a0aa85..00000000 --- a/.themes/classic/source/_includes/asides/googleplus.html +++ /dev/null @@ -1,11 +0,0 @@ -{% if site.googleplus_user %} -<section class="googleplus{% if site.googleplus_hidden %} googleplus-hidden{% endif %}"> - <h1> - <a href="https://plus.google.com/{{ site.googleplus_user }}?rel=author"> - <img src="http://www.google.com/images/icons/ui/gprofile_button-32.png" width="32" height="32"> - Google+ - </a> - </h1> -</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 c89c3e7b..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 = '{{ root_url }}/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 4b108474..00000000 --- a/.themes/classic/source/_includes/asides/recent_posts.html +++ /dev/null @@ -1,10 +0,0 @@ -<section> - <h1>Recent Posts</h1> - <ul id="recent_posts"> - {% for post in site.posts limit: site.recent_posts %} - <li class="post"> - <a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a> - </li> - {% endfor %} - </ul> -</section> |