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

15 lines
355 B
HTML

{{ partial "header.html" . }}
<main>
<div class="article-head">
<h1>{{ .Title }}</h1>
{{ if not .Date.IsZero }}
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
<b>{{ .Date.Format "2006-01-02" }}</b>
</time>
{{ end }}
</div>
<article>
{{ .Content }}
</article>
</main>
{{ partial "footer.html" . }}