aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exampleSite/config.toml4
-rw-r--r--layouts/partials/comments.html12
2 files changed, 16 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index c80e809..ae99823 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -136,6 +136,10 @@ copyright = "" # default: author.name ↓ # 默认为下面配
clientId = "" # Your client ID
clientSecret = "" # Your client secret
+ [params.utterances] # https://utteranc.es/
+ owner = "" # Your GitHub ID
+ repo = "" # The repo to store comments
+
[params.gitalk] # Gitalk is a comment system based on GitHub issues. see https://github.com/gitalk/gitalk
owner = "" # Your GitHub ID
repo = "" # The repo to store comments
diff --git a/layouts/partials/comments.html b/layouts/partials/comments.html
index af5e0c7..48ff8c9 100644
--- a/layouts/partials/comments.html
+++ b/layouts/partials/comments.html
@@ -123,4 +123,16 @@
</script>
{{- end }}
+ <!-- utterances -->
+ {{- if .Site.Params.utterances.owner}}
+ <script src="https://utteranc.es/client.js"
+ repo="{{ .Site.Params.utterances.owner }}/{{ .Site.Params.utterances.repo }}"
+ issue-term="pathname"
+ theme="github-light"
+ crossorigin="anonymous"
+ async>
+ </script>
+ <noscript>Please enable JavaScript to view the <a href="https://github.com/utterance">comments powered by utterances.</a></noscript>
+ {{- end }}
+
{{- end }}