www.iger.events/layouts/_default/section.html

10 lines
164 B
HTML
Raw Normal View History

2022-06-27 17:27:51 +02:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
2022-07-08 04:16:32 +02:00
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
2022-06-27 17:27:51 +02:00
{{ end }}