aboutsummaryrefslogtreecommitdiff
path: root/templates/weblog_archive.html
blob: cd507ba90b4d0482cb266919a11ba819eb56f1b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% 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 %}