2016-02-25 04:18:18 +01:00
|
|
|
---
|
|
|
|
layout: archive
|
|
|
|
permalink: /category-archive/
|
|
|
|
title: "Posts by Category"
|
|
|
|
---
|
|
|
|
{% include absolute-url.liquid %}
|
2016-03-05 03:45:30 +01:00
|
|
|
{% include group-by-array.html collection=site.posts field='categories' %}
|
2016-02-25 04:18:18 +01:00
|
|
|
|
2016-03-05 03:45:30 +01:00
|
|
|
{% for category in group_names %}
|
|
|
|
{% assign posts = group_items[forloop.index0] %}
|
|
|
|
<h3>{{ category }}</h3>
|
|
|
|
{% for post in posts %}
|
2016-03-06 03:29:39 +01:00
|
|
|
{% include post-single.html %}
|
2016-03-05 03:45:30 +01:00
|
|
|
{% endfor %}
|
2016-02-25 04:18:18 +01:00
|
|
|
{% endfor %}
|