blog/hugo/layouts/_default/single.html

11 lines
217 B
HTML
Raw Normal View History

2023-05-31 13:35:32 -04:00
{{ define "title" }}
2023-07-15 20:10:41 -04:00
{{ .Title }} – {{ .Site.Title }}
2023-05-31 13:35:32 -04:00
{{ end }}
{{ define "main" }}
2023-07-15 20:10:41 -04:00
<article>
<h1 class="display-3 text-center">{{ .Title }}</h1>
{{ .Content }}
</article>
2023-05-31 13:35:32 -04:00
{{ end }}