{% macro post_metadata(post, indent_level=0, categories=True) -%} {% filter indent(indent_level*4) %}
{% if categories %} {% if site_info.category_nav %} {{ post.front_matter.get("category", site_info.category_nav["uncategorized_name"]) }} {% elif post.front_matter.get("category") %} {{ post.front_matter.get("category") }} {% endif %} {% endif %}
{%- endfilter -%} {%- endmacro -%} {% extends "base.html" %} {% block content %} {% if page.aggregated_posts %} {# list template #} {% if (page.pagination["root"] if page.pagination else page.href) != "/" %}

{{ page.title }}

{% endif %}
    {% for post in page.aggregated_posts %}
  1. {% if (page.pagination["root"] if page.pagination else page.href) != "/" %}

    {{ post.title }}

    {% else %}

    {{ post.title }}

    {% endif %} {{ post_metadata(post, 4) }}

    {{ post.excerpt | indent(4) }}

  2. {% endfor %}
{% if page.pagination %} {% endif %} {% elif page.aggregated_grouped_posts %} {# archive and categories template #}
    {% for category, posts in page.aggregated_grouped_posts.items() %}
  1. {{ category }}

      {% for post in posts %}
    1. {% endfor %}
  2. {% endfor %}
{% else %} {# single page/post template #}
{% if page.href != "/" %}

{{ page.title }}

{% endif %} {% if page.is_post %} {{ post_metadata(page, 3) }} {% endif %}
{{ page.content | safe -}}
{% endif %} {% endblock %}