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

9 lines
155 B
HTML

{{ define "main" }}
{{ .Content }}
<ul>
{{ range .Pages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}