{% extends "index.html" %}
{%- block title -%}
{{ title_macros::title(page_title=page.title, main_title=config.title) }}
{%- endblock -%}
{% block content %}
{{ page.title }}
{% set section = get_section(path="_index.md") %}
{% set pages_by_year = section.pages | group_by(attribute="year") %}
{%- for year, pages_in_year in pages_by_year %}
{{ year }}
{%- for page in pages_in_year %}
{%- if page.draft %}
{% continue %}
{% endif -%}
-
{{ page.date }}
:: {{ page.title }}
{{ post_macros::tags(page=page, short=true) }}
{%- endfor %}
{%- endfor %}
{% endblock content %}