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

10 lines
218 B
HTML
Raw Normal View History

2023-01-30 13:14:33 -06:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
2023-07-20 21:43:46 -05:00
{{ range .Pages.ByLastmod.Reverse }}
2023-01-30 13:14:33 -06:00
<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
</p>
{{ end }}
2023-07-20 21:43:46 -05:00
{{ end }}