disqus.html 975 B

12345678910111213141516171819202122232425262728293031
  1. {% if site.disqus_shortname and page.comments != false %}
  2. <div id='disqus_thread'></div>
  3. <div class="show-comments">
  4. <button id="show-comments-button" onclick="disqus();return false;">Disqus Comment</button>
  5. </div>
  6. <script>
  7. var disqus_loaded = false;
  8. var disqus_shortname = 'your_disqus_shortname'
  9. function disqus() {
  10. if (!disqus_loaded) {
  11. disqus_loaded = true;
  12. var e = document.createElement("script");
  13. e.type = "text/javascript";
  14. e.async = true;
  15. e.src = "//" + disqus_shortname + ".disqus.com/embed.js";
  16. (document.getElementsByTagName("head")[0] ||
  17. document.getElementsByTagName("body")[0])
  18. .appendChild(e);
  19. //Hide the button after opening
  20. document.getElementById("show-comments-button").style.display = "none";
  21. }
  22. }
  23. </script>
  24. <noscript>Please enable JavaScript to view the <a href='https://disqus.com/?ref_noscript'>comments powered by
  25. Disqus.</a></noscript>
  26. {% endif %}