birdsounds.media/layouts/_default/list.html

26 lines
430 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
{{ if not hugo.IsProduction }}
<aside class="development-info">
<p>template: list.html</p>
{{debug.Dump .}}
</aside>
{{ end }}
<main>
<header>
<div class="container">
<h1>{{ .Title }}</h1>
</div>
</header>
<section>
<div class="container">
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</div>
</section>
</main>
{{ end }}