Merge pull request #122 from aormsby/disable-page-comments

PR - Add condition to show *comments* only in defined contentType pages
This commit is contained in:
Radek Kozieł 2019-12-29 19:07:18 +01:00 committed by GitHub
commit 5b4c773554
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,13 @@
</div>
{{ end }}
{{ end }}
{{ 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 }}