{% extends "layout/default.html" %}

{% block title%}Posts from {{ year }}{% endblock %}

{% block content -%}

<h1 class="page-heading">Posts from {{ year }}</h1>

{% for post in posts %}
	{% include "includes/article-listing.html" %}
{% endfor %}

{% include "includes/pagination.html" %}

{%- endblock %}