{% extends "base.html" %} {% block title %}{{ page.title | default(value="Archive") }} | {{ site.config.title }}{% endblock %} {% block content %} {% set has_sidebar = site.config.extra.author_profile | default(value=false) %}
{% if has_sidebar %} {% endif %}

{{ page.title | default(value="Archive") }}

{% if page.content %}
{{ page.content | safe }}
{% endif %}
{% if site.posts | length == 0 %}

No posts yet.

{% else %} {% set_global current_year = "" %} {% for post in site.posts %} {% set post_year = post.date | date(format="%Y") %} {% if post_year != current_year %} {% if not loop.first %}{% endif %}

{{ post_year }}

    {% set_global current_year = post_year %} {% endif %}
  • {{ post.title }}
  • {% if loop.last %}
{% endif %} {% endfor %} {% endif %}
{% endblock %}