vugo/layouts/_default/list.html

14 lines
365 B
HTML
Raw Normal View History

2022-08-10 15:27:44 +02:00
{{ partial "header.html" . -}}
<h1 class="page-head">{{ .Title }}</h1>
<main>
<article>
{{ .Content -}}
<ul>
{{- range.Pages }}
<li><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end -}}
</ul>
</article>
</main>
{{- partial "footer.html" . }}