aboutsummaryrefslogtreecommitdiff
path: root/source/_includes/asides/github.html
diff options
context:
space:
mode:
authorZhiming Wang <zmwangx@gmail.com>2015-05-04 14:55:10 -0700
committerZhiming Wang <zmwangx@gmail.com>2015-05-04 14:55:10 -0700
commit301679861a2440a10c9eac746cec86459f445ef9 (patch)
tree5aad22ead01cf0da226623f603f33867896c0fea /source/_includes/asides/github.html
parentd0a07c64afba47bbe8bfb56ba9893296a73fc7db (diff)
downloadmy_new_personal_website-301679861a2440a10c9eac746cec86459f445ef9.tar.xz
my_new_personal_website-301679861a2440a10c9eac746cec86459f445ef9.zip
remove all Octopress stuff
Diffstat (limited to 'source/_includes/asides/github.html')
-rw-r--r--source/_includes/asides/github.html30
1 files changed, 0 insertions, 30 deletions
diff --git a/source/_includes/asides/github.html b/source/_includes/asides/github.html
deleted file mode 100644
index b0bf9596..00000000
--- a/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 %}