fedicomment/themes/poc/layouts/_default/single.html

10 lines
195 B
HTML

{{ define "main" }}
<article>
{{ if .Params.Title }}<h1>{{ .Params.Title }}</h1>{{ end }}
{{ .Content }}
</article>
{{ if .Params.postid }}
{{ partial "fedicomment.html" . }}
{{ end }}
{{ end }}