2016-03-04 21:45:30 -05:00
|
|
|
---
|
|
|
|
layout: archive
|
2016-03-06 22:07:48 -05:00
|
|
|
title: "Recipes"
|
2016-03-04 22:57:12 -05:00
|
|
|
permalink: /recipes/
|
2016-03-06 22:07:48 -05:00
|
|
|
author_profile: false
|
2016-03-04 21:45:30 -05:00
|
|
|
---
|
2016-03-07 09:51:50 -05:00
|
|
|
|
2016-03-07 10:27:07 -05:00
|
|
|
{% include base_path %}
|
|
|
|
{% include group-by-array collection=site.recipes field='categories' %}
|
2016-03-04 21:45:30 -05:00
|
|
|
|
|
|
|
{% for category in group_names %}
|
|
|
|
{% assign posts = group_items[forloop.index0] %}
|
2016-03-09 22:18:10 -05:00
|
|
|
<h2>{{ category }}</h2>
|
2016-03-04 21:45:30 -05:00
|
|
|
{% for post in posts %}
|
2016-03-07 10:27:07 -05:00
|
|
|
{% include archive-list-single %}
|
2016-03-04 21:45:30 -05:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|