summaryrefslogtreecommitdiffstats
path: root/layouts/partials/comment-utterances.html
blob: ac1e723ddaf90ae600a1fc3f77eca910ebc50b2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{{ with .Site.Params.utterancesRepo }}
<div class="post-loading">
    <i class="far fa-circle-notch fa-spin"></i>
    <p>{{ i18n "postCommentLoading" }}</p>
</div>
<div class="post-comment">
    <script src="https://utteranc.es/client.js" repo="{{ . }}" issue-term="{{ $.Site.Params.utterancesIssueTerm }}"
            theme="{{ if eq $.Site.Params.toggleMode "dark" }}photon-dark{{ else }}github-light{{ end }}"
            crossorigin="anonymous" async></script>
</div>
{{ end }}