{% import "macros/date.html" as date_macros -%} {% import "macros/head.html" as head_macros -%} {% import "macros/menu.html" as menu_macros -%} {% import "macros/post.html" as post_macros -%} {% import "macros/title.html" as title_macros -%} {% block title -%}{{ section.title | default(value=config.title) }}{%- endblock title %} {{ head_macros::head(config=config) }} {%- if config.generate_feed %} {% endif -%} {%- if config.extra.favicon %} {% endif -%} {%- block extra_head %} {% endblock extra_head -%}
{% block header %}
{% block header_menu %} {{ menu_macros::menu(config=config, current_path=current_path) }} {% endblock header_menu %}
{% endblock header %}
{% block content %}

{{ section.title | default(value="Blog") }}

{% if section.description %}

{{ section.description }}

{% endif %}
{% if paginator %} {% set items = paginator.pages %} {% else %} {% set items = section.pages | sort(attribute="date") | reverse %} {% endif %}
    {% for p in items %} {% if not p.draft %}
  • {{ p.title }} {% if p.date %} · {% endif %}
  • {% endif %} {% endfor %}
{% if paginator %} {% endif %}
{% endblock content %}
{% block footer %} {% endblock footer %}
{%- block extra_body %}{% endblock extra_body -%}