{% extends "base.html" %} {% block content %}

{{ section.title | default(value=config.title) }}

{{ section.content | safe }}

All posts

    {%- set posts_section = get_section(path="posts/_index.md") %} {%- for page in posts_section.pages %}
  1. {{ page.title }}
    {%- if page.date %}{% endif %} {%- if page.extra.part %}{{ page.extra.part }}{% endif %}
    {%- if page.description %}

    {{ page.description }}

    {% endif %}
  2. {%- endfor %}
{% endblock content %}