16 lines
308 B
HTML
16 lines
308 B
HTML
{% 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 %}
|