2016-03-05 03:45:30 +01:00
|
|
|
---
|
|
|
|
layout: archive
|
2016-03-07 04:07:48 +01:00
|
|
|
title: "Recipes"
|
2016-03-05 04:57:12 +01:00
|
|
|
permalink: /recipes/
|
2016-03-07 04:07:48 +01:00
|
|
|
author_profile: false
|
2016-03-05 03:45:30 +01:00
|
|
|
---
|
2016-03-07 15:51:50 +01:00
|
|
|
|
2016-03-07 16:27:07 +01:00
|
|
|
{% include base_path %}
|
|
|
|
{% include group-by-array collection=site.recipes field='categories' %}
|
2016-03-05 03:45:30 +01:00
|
|
|
|
|
|
|
{% for category in group_names %}
|
|
|
|
{% assign posts = group_items[forloop.index0] %}
|
2016-03-11 03:53:28 +01:00
|
|
|
<h2 id="{{ category | slugify }}" class="archive__subtitle">{{ category }}</h2>
|
2016-03-05 03:45:30 +01:00
|
|
|
{% for post in posts %}
|
2016-03-11 03:13:01 +01:00
|
|
|
{% include archive-list-single.html %}
|
2016-03-05 03:45:30 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|