Added option to disable comments on individual pages/posts

Disable comments on an individual page/post by setting `nocomments:
true` in the front matter
This commit is contained in:
Li-Wen Yip 2017-03-04 17:57:08 +00:00
commit 90bde3e913
4 changed files with 4 additions and 3 deletions

View file

@ -18,7 +18,7 @@
{{ end }}
</ul>
{{ if .Site.DisqusShortname }}
{{ if and .Site.DisqusShortname (not .Params.nocomments) }}
<div class="disqus-comments">
{{ template "_internal/disqus.html" . }}
</div>