hacks-guide-minimal-mistake.../_pages/recipes-archive.html
2016-03-09 22:18:10 -05:00

17 lines
384 B
HTML

---
layout: archive
title: "Recipes"
permalink: /recipes/
author_profile: false
---
{% include base_path %}
{% include group-by-array collection=site.recipes field='categories' %}
{% for category in group_names %}
{% assign posts = group_items[forloop.index0] %}
<h2>{{ category }}</h2>
{% for post in posts %}
{% include archive-list-single %}
{% endfor %}
{% endfor %}