Welcome to mirror list, hosted at ThFree Co, Russian Federation.

comments.html « comments « partials « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c2b078d3d12132eb3389db0270cdcaf43addfaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ if $.Param "enableComment" }}
  {{ if $.Param "disqus_shortname" }}
    {{ partial "comments/disqus.html" . }}
  {{ else if $.Param "commento" }}
    {{ partial "comments/commento.html" . }}
  {{ else if $.Param "valine.enable" }}
    {{ partial "comments/valine.html" . }}
  {{ else if $.Param "changyan.changyanAppid" }}
    {{ partial "comments/changyan.html" . }}
  {{ else if $.Param "livere.livereUID" }}
    {{ partial "comments/livere.html" . }}
  {{ else if $.Param "gitment.owner" }}
    {{ partial "comments/gitment.html" . }}
  {{ else if $.Param "gitalk.owner" }}
    {{ partial "comments/gitalk.html" . }}
  {{ else if $.Param "utterances.owner" }}
    {{ partial "comments/utterances.html" . }}
  {{ else if $.Param "isso.enable" }}
    {{ partial "comments/isso.html" . }}
  {{ end }}
{{ end }}