nomnom/layouts/partials/postlist.html

10 lines
212 B
HTML
Raw Normal View History

2020-10-22 23:00:27 +02:00
{{ range sort .Sections "Params.homepage_index" }}
<h3 class="postcat">{{ .Title }}</h3>
2019-08-04 17:11:50 +02:00
<ul>
{{ range sort .Pages "Title" }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
2020-10-22 23:00:27 +02:00
{{ end }}