Files
site/layouts/partials/comments.html
2024-04-07 17:33:55 -04:00

27 lines
610 B
HTML

<script
type="text/javascript"
src="https://storage.ko-fi.com/cdn/widget/Widget_2.js"
></script>
<script type="text/javascript">
kofiwidget2.init("Buy me a coffee", "#32344a", "F1F2S4LWI");
kofiwidget2.draw();
</script>
{{- $config := .Site.Params.comments -}}
{{- $utterancesEnabled := $config.utterances.enable -}}
{{- if $utterancesEnabled -}}
<br>
<br>
<section id='comments' class='comments'>
<div class='container sep-before'>
<div class='comments'>
{{- if $utterancesEnabled -}}
{{ partial "comments/utterances" . }}
{{- end -}}
</div>
</div>
</section>
{{- end -}}