fediversity.eu/layouts/_default/list.html

17 lines
359 B
HTML
Raw Normal View History

2024-03-27 12:24:18 +01:00
{{ 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 }}