Files
site/layouts/partials/comments.html
2024-04-06 23:15:40 -04:00

25 lines
600 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 -}}
<section id='comments' class='comments'>
<div class='container sep-before'>
<div class='comments'>
{{- if $utterancesEnabled -}}
{{ partial "comments/utterances" . }}
{{- end -}}
</div>
</div>
</section>
{{- end -}}