add comments=false check

This commit is contained in:
Adam Ormsby 2019-12-27 14:51:52 +07:00
parent d9ade4410a
commit 28b6f11618

View File

@ -61,8 +61,12 @@
{{ end }}
{{ end }}
{{ if or (eq .Type $.Site.Params.contentTypeName) (.Params.Comments) }}
{{ partial "comments.html" . }}
{{ if not (eq .Params.Comments "false") }}
{{ if or (eq .Type $.Site.Params.contentTypeName) (.Params.Comments) }}
{{ partial "comments.html" . }}
{{ end }}
{{ end }}
</div>
{{ end }}