Files
.themes
_deploy
architecture
assets
blog
contributing
font
getting-started
images
javascripts
plugins
sass
source
_components
_cookbook
_includes
asides
blog
custom
javascripts
delicious.html
disqus.html
github.html
google_analytics.html
scripts.html
post
site
after_footer.html
archive_post.html
article.html
aside.html
disqus.html
edit_github.html
facebook_like.html
footer.html
google_analytics.html
google_plus_one.html
header.html
navigation.html
twitter_sharing.html
unused_head.html
_layouts
_posts
_topics
assets
blog
components
cookbook
demo
developers
font
getting-started
help
images
javascripts
static
topics
CNAME
atom.xml
favicon.png
googlef4f3693c209fe788.html
index.html
robots.txt
service_worker.js
stylesheets
.editorconfig
.gitattributes
.gitignore
.gitmodules
.powrc
.ruby-version
.slugignore
.travis.yml
CHANGELOG.markdown
CNAME_old
Gemfile
Gemfile.lock
README.markdown
Rakefile
_config.yml
atom.xml
config.rb
config.ru
favicon.png
index.html
robots.txt
sitemap.xml
home-assistant.io/source/_includes/javascripts/github.html
Paulus Schoutsen b0bdfe2fe9 Update to site
2014-12-21 12:17:37 -08:00

22 lines
613 B
HTML

{% if site.github_user %}
<script>
$(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"></script>
{% endif %}