~xdavidwu/xdavidwu.link

ref: 1ccd5f6bf08082b17ca51e63a70c4b01db831b6c xdavidwu.link/_pages/tag-archive.html -rw-r--r-- 432 bytes
1ccd5f6b — Michael Rose Edit sidebar and page meta styles 9 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: archive
permalink: /tag-archive/
title: "Posts by Tags"
author_profile: false
---

{% include base_path %}
{% include group-by-array collection=site.posts field='tags' %}

{% for tag in group_names %}
  {% assign posts = group_items[forloop.index0] %}
  <h2 id="{{ tag | slugify }}" class="archive__subtitle">{{ tag }}</h2>
  {% for post in posts %}
    {% include archive-list-single.html %}
  {% endfor %}
{% endfor %}