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

17 lines
445 B
HTML

{{ define "main" }}
<main class="container" aria-role="main">
<header class="header">
<h1>{{ .Parent.Title }}: {{ .Title }}</h1>
</header>
<ul>
{{ range .Pages }}
<!-- TODO: Content summary -->
<li>
<a href="{{ .Permalink }}"><span style="font-variant-numeric: tabular-nums;">{{ .Date.Format "2006-01-02" }}</span> | {{ .Title }}</a>
</li>
{{ end }}
</ul>
</main>
{{ end }}