mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 08:43:40 +00:00
16 lines
411 B
HTML
16 lines
411 B
HTML
{{- $config := .Site.Params.comments -}}
|
|
|
|
{{- $utterancesEnabled := $config.utterances.enable -}}
|
|
|
|
{{- if and ( $utterancesEnabled ) ( not .Params.disable_comments) -}}
|
|
<section id='comments' class='comments'>
|
|
<div class='container sep-before'>
|
|
<div class='comments'>
|
|
{{- if $utterancesEnabled -}}
|
|
{{ partial "comments/utterances" . }}
|
|
{{- end -}}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{- end -}}
|