diff options
author | Chris Howie <me@chrishowie.com> | 2013-07-19 15:31:52 +0000 |
---|---|---|
committer | Chris Howie <me@chrishowie.com> | 2013-07-19 15:36:07 +0000 |
commit | 56249524322a3704274f3a6a72174a6cbc3e808f (patch) | |
tree | 1bcc12ccb32ba1fa94e23d73ffc95132b2b5ea21 /gum/templates/disqus_script.html | |
parent | 08364df4285e416e053562d418d11270201c87d7 (diff) | |
download | pelican-themes-56249524322a3704274f3a6a72174a6cbc3e808f.tar.gz |
Gum: Add Disqus support
Diffstat (limited to 'gum/templates/disqus_script.html')
-rw-r--r-- | gum/templates/disqus_script.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gum/templates/disqus_script.html b/gum/templates/disqus_script.html new file mode 100644 index 0000000..c4f442c --- /dev/null +++ b/gum/templates/disqus_script.html @@ -0,0 +1,11 @@ +{% if DISQUS_SITENAME %} +<script type="text/javascript"> + var disqus_shortname = '{{ DISQUS_SITENAME }}'; + (function () { + var s = document.createElement('script'); s.async = true; + s.type = 'text/javascript'; + s.src = 'http://' + disqus_shortname + '.disqus.com/count.js'; + (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); + }()); +</script> +{% endif %} |