{% extends "base.html" %} {% block title %}{{ page.title | default(value="Posts by Tag") }} | {{ site.config.title }}{% endblock %} {% block content %} {% set has_sidebar = site.config.extra.author_profile | default(value=false) %}
{% if has_sidebar %} {% endif %}

{{ page.title | default(value="Posts by Tag") }}

{% if page.content %}
{{ page.content | safe }}
{% endif %}
{% set all_tags = [] %} {% for post in site.posts %} {% for tag in post.tags %} {% set_global all_tags = all_tags | concat(with=tag) %} {% endfor %} {% endfor %} {% set unique_tags = all_tags | unique | sort %} {% if unique_tags | length == 0 %}

No tagged posts yet.

{% else %} {% for tag in unique_tags %}

{{ tag }}

    {% for post in site.posts %} {% if tag in post.tags %}
  • {{ post.title }}
  • {% endif %} {% endfor %}
{% endfor %} {% endif %}
{% endblock %}