Comments toggeled per-page by setting "comments = true" or "comments = false" in front matter. If not set, will use new default setting defined in config.toml.
14 lines
458 B
HTML
14 lines
458 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 (.Params.comments) | or (and (not (isset .Params "comments")) (.Site.Params.comments)) }}
|
|
{{ if .Site.DisqusShortname }}
|
|
<div class="disqus-comments">
|
|
{{ template "_internal/disqus.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|