2016-02-24 22:18:18 -05:00
|
|
|
---
|
|
|
|
layout: archive
|
2016-03-11 09:39:20 -05:00
|
|
|
permalink: /tags/
|
2016-02-24 22:18:18 -05:00
|
|
|
title: "Posts by Tags"
|
2016-03-09 12:22:46 -05:00
|
|
|
author_profile: false
|
2016-02-24 22:18:18 -05:00
|
|
|
---
|
2016-03-07 09:51:50 -05:00
|
|
|
|
2016-03-07 10:27:07 -05:00
|
|
|
{% include base_path %}
|
2016-03-19 20:58:17 -04:00
|
|
|
{% include group-by-array collection=site.posts field="tags" %}
|
2016-02-24 22:18:18 -05:00
|
|
|
|
2016-03-04 21:45:30 -05:00
|
|
|
{% for tag in group_names %}
|
|
|
|
{% assign posts = group_items[forloop.index0] %}
|
2016-04-04 14:20:47 -04:00
|
|
|
<h2 id="{{ tag | downcase }}" class="archive__subtitle">{{ tag }}</h2>
|
2016-03-04 21:45:30 -05:00
|
|
|
{% for post in posts %}
|
2016-03-19 20:58:17 -04:00
|
|
|
{% include archive-single.html %}
|
2016-03-04 21:45:30 -05:00
|
|
|
{% endfor %}
|
2016-02-24 22:18:18 -05:00
|
|
|
{% endfor %}
|