comments.html 607 B

1234567891011121314151617
  1. {% if site.disqus.shortname -%}
  2. <script>
  3. var disqus_config = function () {
  4. this.page.url = '{{ page.url | absolute_url }}';
  5. this.page.identifier = '{{ page.id }}';
  6. };
  7. (function() {
  8. var d = document, s = d.createElement('script');
  9. s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
  10. s.setAttribute('data-timestamp', +new Date());
  11. (d.head || d.body).appendChild(s);
  12. })();
  13. </script>
  14. <noscript>
  15. Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
  16. </noscript>
  17. {% endif -%}