dalaran.fr/themes/dalaran/layouts/_default/single.html

18 lines
414 B
HTML
Raw Normal View History

2025-01-14 16:52:36 +01:00
{{ partial "header.html" . }}
2024-09-28 12:53:17 +02:00
<main>
2025-01-14 16:52:36 +01:00
<div class="article-head">
<h1>{{ .Title }}</h1>
{{ if not .Date.IsZero }}
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
<b>{{ .Date | time.Format ":date_medium" }}</b>
-
{{ .ReadingTime }} minutes read
</time>
{{ end }}
</div>
2024-09-28 12:53:17 +02:00
<article>
{{ .Content }}
</article>
</main>
{{ partial "footer.html" . }}