2016-02-25 04:18:18 +01:00
|
|
|
---
|
|
|
|
layout: archive
|
|
|
|
permalink: /tag-archive/
|
|
|
|
title: "Posts by Tags"
|
|
|
|
---
|
2016-03-07 15:51:50 +01:00
|
|
|
|
2016-02-25 04:18:18 +01:00
|
|
|
{% include absolute-url.liquid %}
|
2016-03-05 03:45:30 +01:00
|
|
|
{% include group-by-array.html collection=site.posts field='tags' %}
|
2016-02-25 04:18:18 +01:00
|
|
|
|
2016-03-05 03:45:30 +01:00
|
|
|
{% for tag in group_names %}
|
|
|
|
{% assign posts = group_items[forloop.index0] %}
|
|
|
|
<h3>{{ tag }}</h3>
|
|
|
|
{% for post in posts %}
|
2016-03-07 03:01:09 +01:00
|
|
|
{% include archive-list-single.html %}
|
2016-03-05 03:45:30 +01:00
|
|
|
{% endfor %}
|
2016-02-25 04:18:18 +01:00
|
|
|
{% endfor %}
|