mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
3462e39400
by setting github_repo_count to someething that's not 0, you can limit the amount of repositories to render
27 lines
803 B
HTML
27 lines
803 B
HTML
{% if site.github_user %}
|
|
<section>
|
|
<h1>Github Repos</h1>
|
|
<ul id="gh_repos">
|
|
<li class="loading">Status updating...</li>
|
|
</ul>
|
|
<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}},
|
|
target: '#gh_repos'
|
|
});
|
|
});
|
|
</script>
|
|
<script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script>
|
|
</section>
|
|
{% endif %}
|