ccchh-website/themes/ccchh/layouts/_default/list.html

16 lines
392 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
<main class="container" aria-role="main">
<header class="header">
<h1>{{ .Title }}</h1>
</header>
<ul>
2023-11-03 20:36:12 +01:00
{{- range .Pages }}
<li>
2023-11-04 22:26:11 +01:00
<a href="{{ .RelPermalink }}"><span style="font-variant-numeric: tabular-nums;">{{ .Date.Format "2006-01-02" }}</span> | {{ .Title }}</a>
</li>
2023-11-03 20:36:12 +01:00
{{- end }}
</ul>
</main>
{{ end }}