hugo-theme-introduction/layouts/_default/single.html
Kevin Ottens 29aa348daa Move comments handling in a partial (#138)
This way it's much easier to tune the comment handling in general (like
disable it for some sections) or integrate a different commenting system
than disqus.
2019-03-15 11:03:46 +01:00

7 lines
175 B
HTML

{{ define "main" }}
<div class="container markdown top-pad">
{{ .Content }}
</div>
<!-- End post content -->
{{ partial "comments.html" . }}
{{ end }}