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

11 lines
249 B
HTML

{{ define "main" }}
<div class="container text-center pb-2">
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ end }}
</div>
{{ end }}