disqus.html 982 B

1234567891011121314151617181920212223242526272829
  1. {{ with .disqus }}
  2. <div id="disqus_thread"></div>
  3. <script type="text/javascript">
  4. (function () {
  5. // Don't ever inject Disqus on localhost--it creates unwanted
  6. // discussions from 'localhost:1313' on your Disqus account...
  7. if (window.location.hostname == "localhost") return;
  8. var dsq = document.createElement("script");
  9. dsq.type = "text/javascript";
  10. dsq.async = true;
  11. var disqus_shortname = "{{ .shortName }}";
  12. dsq.src = "//" + disqus_shortname + ".disqus.com/embed.js";
  13. (
  14. document.getElementsByTagName("head")[0] ||
  15. document.getElementsByTagName("body")[0]
  16. ).appendChild(dsq);
  17. })();
  18. </script>
  19. <noscript
  20. >{{ i18n "comments_javascript" }}
  21. <a href="https://disqus.com/?ref_noscript"
  22. >{{ i18n "comments_by" }} Disqus.</a
  23. ></noscript
  24. >
  25. <a href="https://disqus.com/" class="dsq-brlink"
  26. >{{ i18n "comments_by" }} <span class="logo-disqus">Disqus</span></a
  27. >
  28. {{ end }}