This repository has been archived on 2025-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
website-old/layouts/_default/list.html
Kiara Grouwstra 54bf9da2a3
init
2025-04-14 11:20:58 +02:00

16 lines
359 B
HTML
Executable file

{{ define "main" }} {{ partial "page-header" . }}
<section class="section">
<div class="container">
<ul class="text-center">
{{ range .RegularPages }}
<li class="m-3">
<a href="{{ .Permalink }}" class="text-dark block text-xl">
{{ .Title }}
</a>
</li>
{{ end }}
</ul>
</div>
</section>
{{ end }}