{% extends "news/base_news.html" %} {% load custom_date %} {% load news_extras %} {% load pagination_tags %} {#{% load markup %}#} {% block title %}{{ year }} - {{ block.super }}{% endblock %} {% block content %}

News Archive

News Archiv » {{ year|date:"Y" }}: {% for month in date_list %} {{ month|date:"F" }} {% if not forloop.last %} | {% endif %} {% endfor %}
{% autopaginate object_list 10 %} {% paginate %}

{% for object in object_list %} {% include "news/inlines/post_detail.html" %} {% endfor %} {% if page_obj.has_other_pages %}
{% paginate %}
{% endif %} {% endblock %}