blob: 24af1dcbb148918a8f41a9de69b226c9381b1ae7 (
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 %}
|