hugo-theme-lowtech/layouts/_default/list.html

9 lines
155 B
HTML
Raw Permalink Normal View History

2020-03-26 17:58:51 +01:00
{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
2020-03-26 17:58:51 +01:00
{{ end }}