hacks-guide-minimal-mistake.../test/_pages/tag-archive.html

17 lines
395 B
HTML
Raw Normal View History

2016-09-22 04:13:25 +02:00
---
layout: archive
permalink: /tags/
title: "Posts by Tag"
2016-09-22 04:13:25 +02:00
author_profile: true
---
{% 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-single.html %}
{% endfor %}
{% endfor %}