vanilla-hugo/layouts/series/terms.html

11 lines
179 B
HTML
Raw Normal View History

2023-01-31 17:43:05 -08:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
2023-01-31 18:54:08 -08:00
<ul class="post-list">
2023-01-31 17:43:05 -08:00
{{ range sort .Pages "Title" }}
2023-01-31 18:54:08 -08:00
{{ partial "post.html" . }}
2023-01-31 17:43:05 -08:00
{{ end }}
</ul>
{{ end }}