diff options
| author | Brandon Mathis <brandon@imathis.com> | 2011-09-03 09:09:15 -0500 |
|---|---|---|
| committer | Brandon Mathis <brandon@imathis.com> | 2011-09-03 09:09:15 -0500 |
| commit | 5324fa9e4c6ab4b94218c8747f9c05a781a642e3 (patch) | |
| tree | 96ef8d660c3d86943dfb6335e30a395e22d1c09e /.themes/classic/source/_includes | |
| parent | 4f9c45f24ac6c41cc8e91f25056681e98144b0f5 (diff) | |
| parent | 1860c236329a13e62b8af2f2c41c589fa25177bb (diff) | |
| download | my_new_personal_website-5324fa9e4c6ab4b94218c8747f9c05a781a642e3.tar.xz my_new_personal_website-5324fa9e4c6ab4b94218c8747f9c05a781a642e3.zip | |
Merge branch 'github-repositories-plugin' of https://github.com/pilif/octopress into 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 %} |
