sat-sw-website/themes/minimal-theme/layouts/_default/list.html

11 lines
249 B
HTML
Raw Normal View History

2023-12-08 10:56:22 +01:00
{{ define "main" }}
2023-12-11 12:22:12 +01:00
<div class="container text-center pb-2">
2023-12-08 10:56:22 +01:00
<h1>{{ .Title }}</h1>
2023-12-11 12:22:12 +01:00
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ end }}
</div>
2023-12-08 10:56:22 +01:00
{{ end }}