hugo-theme-hyde-hyde/layouts/partials/commenting.html

12 lines
368 B
HTML
Raw Normal View History

2018-07-10 01:41:30 +00:00
{{- if and (not .Site.BuildDrafts) (ne .Params.showcomments false) -}}
{{ if .Site.DisqusShortname -}}
2018-07-05 02:20:53 +00:00
<hr>
2018-01-24 09:42:50 +00:00
<h2>Comments</h2>
2018-07-10 01:41:30 +00:00
{{- partial "commenting/disqus.html" . -}}
{{- else if .Site.Params.GraphCommentId -}}
2018-07-05 02:20:53 +00:00
<hr>
<h2>Comments</h2>
2018-07-10 01:41:30 +00:00
{{- partial "commenting/graphcomment.html" . -}}
{{- end -}}
{{- end }}