{% extends "base.html" %} {% block content %} {% for year, posts in years %}

{{ year}}

{% for post in posts %} {% if archive and post.categories[0] == 'How-to' %} {% else %}

{% if post.link %} → {{ post.title }} {% else %} {{ post.title }} {% endif %}

{% include "tags.html" %}
{% endif %} {% endfor %}
{% endfor %} {% endblock %} {% block title %} {% if archive %} Archive - {% elif not archive %} {{ categories }} — {% endif %} {% endblock %}