blob: c2df7b8e1c5909eb76bc28802e223e50ea4a439b (
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 %}{{ month|date:"YEAR_MONTH_FORMAT" }} | {% translate "Weblog" %}{% endblock %}
{% block og_title %}{% blocktranslate with month=month|date:"YEAR_MONTH_FORMAT" %}Django news: {{ month }} archive{% endblocktranslate %}{% endblock %}
{% block content %}
<h1>{% blocktranslate with month=month|date:"YEAR_MONTH_FORMAT" %}{{ month }} archive{% endblocktranslate %}</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 %}
|