diff options
Diffstat (limited to 'themes/lv2/templates/includes/github-js.html')
-rw-r--r-- | themes/lv2/templates/includes/github-js.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/themes/lv2/templates/includes/github-js.html b/themes/lv2/templates/includes/github-js.html deleted file mode 100644 index 85d9ae5..0000000 --- a/themes/lv2/templates/includes/github-js.html +++ /dev/null @@ -1,35 +0,0 @@ -{% if GITHUB_USER %} - {% if GITHUB_REPO_COUNT is not defined %} - {% set GITHUB_REPO_COUNT = 5 %} - {% endif %} - {% if GITHUB_SKIP_FORK is not defined %} - {% set GITHUB_SKIP_FORK = "false" %} - {% else %} - {% if GITHUB_SKIP_FORK %} - {% set GITHUB_SKIP_FORK = "true" %} - {% else %} - {% set GITHUB_SKIP_FORK = "false" %} - {% endif %} - {% endif %} - <!-- GitHub JS --> - <script type="text/javascript"> - $(document).ready(function () { - if (!window.jXHR) { - var jxhr = document.createElement('script'); - jxhr.type = 'text/javascript'; - jxhr.src = '{{ SITEURL }}/theme/js/jXHR.js'; - var s = document.getElementsByTagName('script')[0]; - s.parentNode.insertBefore(jxhr, s); - } - - github.showRepos({ - user: '{{ GITHUB_USER }}', - count: {{ GITHUB_REPO_COUNT }}, - skip_forks: {{ GITHUB_SKIP_FORK }}, - target: '#gh_repos' - }); - }); - </script> - <script src="{{ SITEURL }}/theme/js/github.js" type="text/javascript"></script> - <!-- End GitHub JS Code --> -{% endif %}
\ No newline at end of file |