themes/hugo-coder/layouts/partials/posts/utterances.html
307624bb23a5750aaf48680b0578f47a768bc417
· 614 B · 12 lines
raw
| 1 | {{- if isset .Site.Params "utterances" -}} |
| 2 | {{- if and (isset .Site.Params.utterances "repo") (not (eq .Site.Params.utterances.repo "" )) (eq (.Params.disable_comments | default false) false) -}} |
| 3 | <script src="https://utteranc.es/client.js" |
| 4 | repo= "{{ .Site.Params.utterances.repo }}" |
| 5 | issue-term="{{ default "title" .Site.Params.utterances.issueTerm }}" |
| 6 | {{ if isset .Site.Params.utterances "label" }}label="{{ .Site.Params.utterances.label }}"{{ end }} |
| 7 | theme="{{ default "github-light" .Site.Params.utterances.theme }}" |
| 8 | crossorigin="anonymous" |
| 9 | async> |
| 10 | </script> |
| 11 | {{- end -}} |
| 12 | {{- end -}} |