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

16 lines
315 B
HTML
Raw Normal View History

2023-10-05 23:23:48 +02:00
{{ define "main" }}
<main class="container" aria-role="main">
<header class="header">
<h1>{{ .Title }}</h1>
</header>
<section>
<ul>
{{- range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{- end }}
2023-10-05 23:23:48 +02:00
</ul>
</section>
</main>
{{ end }}