{% include base_path %}
{% include group-by-array collection=site.posts field="tags" %}
{% for tag in group_names %}
{% assign posts = group_items[forloop.index0] %}
{{ tag }}
{% for post in posts %}
{{ post.title }}
{% for tag in post.tags %}
{{ tag }}
{% endfor %}
{% include archive-single.html %}
{% endfor %}
{% endfor %}