aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_includes
diff options
context:
space:
mode:
authorPhilip Hofstetter <phofstetter@sensational.ch>2011-08-04 21:15:50 +0200
committerPhilip Hofstetter <phofstetter@sensational.ch>2011-08-04 21:15:50 +0200
commit08af7b4e383976858ca5b7dd3246525c17bcb941 (patch)
tree8fca462195027deb0beec0b182fa319ad078793b /.themes/classic/source/_includes
parentf95591934822064aad21dfa868ccffce34387bf1 (diff)
downloadmy_new_personal_website-08af7b4e383976858ca5b7dd3246525c17bcb941.tar.xz
my_new_personal_website-08af7b4e383976858ca5b7dd3246525c17bcb941.zip
allow limiting the amount of repos to display
by setting github_repo_count to someething that's not 0, you can limit the amount of repositories to render
Diffstat (limited to '.themes/classic/source/_includes')
-rw-r--r--.themes/classic/source/_includes/asides/github.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/.themes/classic/source/_includes/asides/github.html b/.themes/classic/source/_includes/asides/github.html
index 07b37aa4..5e0b0ed2 100644
--- a/.themes/classic/source/_includes/asides/github.html
+++ b/.themes/classic/source/_includes/asides/github.html
@@ -13,7 +13,12 @@
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}
- github.showRepos('{{site.github_user}}', '#gh_repos');
+
+ github.showRepos({
+ user: '{{site.github_user}}',
+ count: {{site.github_repo_count}},
+ target: '#gh_repos'
+ });
});
</script>
<script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script>