nomnom/layouts/partials/recipelist.html

12 lines
263 B
HTML
Raw Normal View History

{{ range where .Sections "Type" "==" "recettes" }}
{{ range sort .Sections "Params.homepage_index" }}
<h2 class="recipecat">{{ .Title }}</h2>
<ul>
{{ range sort .Pages "Title" }}
{{ partial "recipe_list_entry.html" . }}
{{ end }}
</ul>
{{ end }}
{{ end }}