9 lines
187 B
HTML
Raw Normal View History

2024-04-30 17:33:01 -07:00
{{ define "main" }}
2024-05-10 12:26:39 -07:00
<h2>{{ .Title }}</h2>
2024-04-30 17:33:01 -07:00
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ end }}
{{ end }}