{% block component_styles %} {{ super() }} {% endblock component_styles %} {# Build a list of pages to work with #} {# {% set all_pages = [] %} {% set all_pages = all_pages + %} #} {% set blog_section = get_section(path="blog/_index.md") %} {% set music_ewp_section = get_section(path="music/evan-pratten/_index.md") %} {% set music_rtl_section = get_section(path="music/retrylife/_index.md") %} {% set photo_section = get_section(path="photography/_index.md") %} {% set software_section = get_section(path="software/_index.md") %} {# Combine pages #} {% set all_pages = [] %} {% set all_pages = all_pages | concat(with=blog_section.pages) %} {% set all_pages = all_pages | concat(with=music_ewp_section.pages) %} {% set all_pages = all_pages | concat(with=music_rtl_section.pages) %} {% set all_pages = all_pages | concat(with=photo_section.pages) %} {% set all_pages = all_pages | concat(with=software_section.pages) %} {# Sort and group #} {% set all_pages = all_pages | sort(attribute="date") | reverse %} {% set map = all_pages | group_by(attribute="year") %} {% set_global years = [] %} {% for year, ignored in map %} {% set_global years = years | concat(with=year) %} {% endfor %} {# Iterate all pages #} {% for year in years %} {% set pages = map[year] %} {# Per-year heading #}

{{year}}

{% endfor %}