nomnom/layouts/partials/recipelist.html

10 lines
202 B
HTML
Raw Normal View History

{{ range sort .Sections "Params.homepage_index" }}
2019-08-04 17:11:50 +02:00
<h3 class="recipecat">{{ .Title }}</h3>
<ul>
{{ range sort .Pages "Title" }}
{{ partial "recipe_list_entry.html" . }}
{{ end }}
</ul>
{{ end }}