blog/layouts/_default/single.html

12 lines
320 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>
2023-07-21 22:46:10 -04:00
<p class="text-center"><time datetime="{{ .Date }}">{{ .Date.Format "2006-01-02" }}</time></p>
2023-07-15 20:10:41 -04:00
{{ .Content }}
</article>
2023-05-31 13:35:32 -04:00
{{ end }}