diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-09-03 10:04:25 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-09-03 10:04:25 -0500 |
commit | 3cedd387a0fd4522023ef335307cbc096a3c2005 (patch) | |
tree | ef48885f71e7d3e99082792a2d61a0a8ceab7134 /.themes/classic/source/_includes | |
parent | 597c7eb2b1868752cbfca13b2ec7f2d265a32cd8 (diff) | |
parent | c8eded1d0e016a0e702353e3bfa57f0e08bac668 (diff) | |
download | my_new_personal_website-3cedd387a0fd4522023ef335307cbc096a3c2005.tar.xz my_new_personal_website-3cedd387a0fd4522023ef335307cbc096a3c2005.zip |
Merge branch 'pilif-github-repositories-plugin'
Diffstat (limited to '.themes/classic/source/_includes')
-rw-r--r-- | .themes/classic/source/_includes/asides/github.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.themes/classic/source/_includes/asides/github.html b/.themes/classic/source/_includes/asides/github.html new file mode 100644 index 00000000..935ccff0 --- /dev/null +++ b/.themes/classic/source/_includes/asides/github.html @@ -0,0 +1,30 @@ +{% 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"> + $.domReady(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 %} |