{% extends "base.html" %} {% block title %}{{ page.title | default(value="Posts by Category") }} | {{ 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 Category") }}

{% if page.content %}
{{ page.content | safe }}
{% endif %}
{% set all_categories = [] %} {% for post in site.posts %} {% for category in post.categories %} {% set_global all_categories = all_categories | concat(with=category) %} {% endfor %} {% endfor %} {% set unique_categories = all_categories | unique | sort %} {% if unique_categories | length == 0 %}

No categorized posts yet.

{% else %} {% for category in unique_categories %}

{{ category }}

    {% for post in site.posts %} {% if category in post.categories %}
  • {{ post.title }}
  • {% endif %} {% endfor %}
{% endfor %} {% endif %}
{% endblock %}