{%- set tax = maatlog.taxonomies -%}
{{ taxonomy_section(tax.tags, "Tags", "maatlog-taxonomy-tags", "All tags") }}
{{ taxonomy_section(tax.categories, "Categories", "maatlog-taxonomy-categories", "All categories") }}
{{ taxonomy_section(tax.authors, "Authors", "maatlog-taxonomy-authors", "All authors") }}
{%- if tax.months -%}
{%- set months = tax.months|sort(attribute='id', reverse=true) -%}
{%- set years = [] -%}
{%- for item in months -%}
{%- if item.id[:4] not in years -%}{%- set _ = years.append(item.id[:4]) -%}{%- endif -%}
{%- endfor -%}
Archives
{%- for year in years -%}
{{ year }}
{%- for item in months if item.id[:4] == year -%}{{ taxonomy_item(item) }}{%- endfor -%}
{%- endfor -%}
{%- endif -%}
{%- include "maatlog/components/feed-links.html" -%}