summaryrefslogtreecommitdiff
path: root/djangoproject/templates/blog/entry_archive_year.html
blob: 924feb8f52a1b0ad4c604ff09b6cf2fb2c0d0921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "base_weblog.html" %}
{% load i18n %}

{% block title %}{{ year|date:"Y" }} | {% translate "Weblog" %}{% endblock %}

{% block og_title %}{% blocktranslate with year=year|date:"Y" %}Django news: {{ year }} archive{% endblocktranslate %}{% endblock %}

{% block content %}

  <h1>{{ year|date:"Y" }} {% translate "archive" %}</h1>

  <ul class="list-news">

    {% for object in object_list %}
      {% include 'blog/news_summary.html' with object=object %}
    {% endfor %}

  </ul>

  {% include 'blog/blog_pagination.html' %}

{% endblock content %}