nemhugo/layouts/partials/page.html
Li-Wen Yip 90bde3e913 Added option to disable comments on individual pages/posts
Disable comments on an individual page/post by setting `nocomments:
true` in the front matter
2017-03-04 17:57:08 +00:00

12 lines
357 B
HTML

<div class="container" role="main">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{{ .Content }}
{{ if and .Site.DisqusShortname (not .Params.nocomments) }}
<div class="disqus-comments">
{{ template "_internal/disqus.html" . }}
</div>
{{ end }}
</div>
</div>
</div>