hugo-theme-hyde-hyde/layouts/partials/page-single/post-comment.html

12 lines
474 B
HTML
Raw Normal View History

{{ if ne .Params.showcomments false }}
{{ if .Site.DisqusShortname }}
{{ partial "page-single/comment/disqus.html" . }}
{{ else if .Site.Params.GraphCommentId }}
{{ partial "page-single/comment/graphcomment.html" . }}
2018-11-02 03:17:45 +00:00
{{ else if .Site.Params.UtterancesRepo }}
{{ partial "page-single/comment/utterances.html" . }}
2019-05-29 04:11:59 +00:00
{{ else if .Site.Params.Commento }}
{{ partial "page-single/comment/commento.html" . }}
{{ end }}
{{ end }}