blog/hugo/layouts/_default/single.html

11 lines
217 B
HTML

{{ define "title" }}
{{ .Title }} – {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<article>
<h1 class="display-3 text-center">{{ .Title }}</h1>
{{ .Content }}
</article>
{{ end }}