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

18 lines
333 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 }}
</ul>
</section>
</main>
{{ end }}