10 lines
226 B
HTML
Raw Normal View History

2024-04-30 17:33:01 -07:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a> {{ with .Params.author }}by {{ . }}{{ end }}</li>
{{ end }}
</ul>
{{ end }}