Enable Disqus comments on the blog
I wanted to enable Disqus comments on the blog, but only on the post pages. So, to do that, I modified the file _layouts/post.html to include, after the post code, the line:
{% include comments.html %}
To enable Disqus comments, I have created a file _includes/comments.html that includes the universal code founded on my Disqus account:
<!-- Add Disqus comments. -->
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = '<USERNAME>'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script><noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript><a class="dsq-brlink" href="http://disqus.com">comments powered by <span class="logo-disqus">Disqus</span></a>
And now, as you can see below, you can find the Disqus comments platform on my post pages. And it’s beautiful, really beautiful!