added cactus theme files
This commit is contained in:
22
hugo-content/themes/cactus/layouts/partials/comments.html
Normal file
22
hugo-content/themes/cactus/layouts/partials/comments.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ if (not (isset .Site.Params "comments")) }}
|
||||
{{ .Scratch.Set "enable_comments" false }}
|
||||
{{ else if (isset .Params "comments") }}
|
||||
{{ .Scratch.Set "enable_comments" .Params.comments }}
|
||||
{{ else if (isset .Site.Params.Comments "enabled") }}
|
||||
{{ .Scratch.Set "enable_comments" .Site.Params.Comments.Enabled }}
|
||||
{{ else }}
|
||||
{{ .Scratch.Set "enable_comments" true }}
|
||||
{{ end }}
|
||||
|
||||
{{ $enable_comments := .Scratch.Get "enable_comments" }}
|
||||
{{ if $enable_comments }}
|
||||
<div class="blog-post-comments">
|
||||
{{ if (or (not (isset .Site.Params.Comments "engine")) (eq .Site.Params.Comments.Engine "disqus")) }}
|
||||
{{ partial "comments/disqus.html" . }}
|
||||
{{ else if eq .Site.Params.Comments.Engine "utterances" }}
|
||||
{{ partial "comments/utterances.html" . }}
|
||||
{{ else if eq .Site.Params.Comments.Engine "cactus_comments" }}
|
||||
{{ partial "comments/cactus_comments.html" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user