{{ define "main" }}
{{ if or (fileExists (print "layouts/partials/content-type/" .Type ".html") ) (fileExists (print "themes/bilberry-hugo-theme/layouts/partials/content-type/" .Type ".html")) }} {{ partial (print "content-type/" .Type ".html") (dict "ctx" . "template_type" "single") }} {{ else }} {{ partial "content-type/article.html" (dict "ctx" . "template_type" "single") }} {{ end }}
{{ if ( .Params.showComments | default true ) }}
{{ template "_internal/disqus.html" . }} {{ partial "commento.html" . }} {{ partial "giscus.html" . }} {{ partial "utterances.html" . }}
{{ end }} {{ end }}