11 lines
249 B
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 }}
|