websites/layouts/_default/list.html

9 lines
155 B
HTML
Raw Permalink Normal View History

2023-06-15 12:17:18 +02:00
{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}