{% extends "base.html" %}
{% block title %}
Weblog archive - Yaroslav's weblog
{% endblock %}
{% block header %}
<h1>Yaroslav's weblog archive</h1>
{% endblock %}
{% block content %}
{% set section = get_section(path="weblog/_index.md") %}
<div class="post-container">
  {% for year, posts in section.pages | group_by(attribute="year") %}
  <h2>{{ year }}</h2>
  <ul>
    {% for post in posts %}
    <li><span class="publish-date">{{ post.date | date }}</span> - <a href="{{ post.permalink }}">{{ post.title }}</a></li>
    {% endfor %}
  </ul>
  {% endfor %}
</div>
{% endblock %}