InkSoul/themes/meme_cdn/layouts/partials/components/comments.html

27 lines
824 B
HTML

{{ if and (.Params.comments | default .Site.Params.enableComments) (eq hugo.Environment "production") }}
{{ if or (in .Site.Params.mainSections .Section) .Params.comments }}
{{ if not .Site.Params.autoLoadComments }}
<div class="load-comments">
<div id="load-comments">{{ i18n "loadComments" }}</div>
</div>
{{ end }}
{{ if .Site.Params.enableDisqus }}
<div id="disqus_thread"></div>
{{ end }}
{{ if .Site.Params.enableValine }}
<div id="vcomments"></div>
{{ end }}
{{ if .Site.Params.enableUtterances }}
<div id="utterances"></div>
{{ end }}
{{ if .Site.Params.enableGitalk }}
<div id="gitalk-container"></div>
{{ end }}
{{ end }}
{{ end }}