{% extends 'blog.html' %} {% load next_prev %} {% block extra_headers %}{% endblock %} {% block title %}road.lk blog archives for {{ year }}{% endblock %} {% block content %} {% for post in posts %}

{{ post.title }}

{{ post.published_at }} {% for tag in post.tags %} {{ tag }} {% if not forloop.last %}, {% endif %} {% endfor %}

{% if post.summary %} {{ post.summary }} ... {% endif %}
{% endfor %} {% endblock %}