blob: 9da340e1d72b6ce9134b65840a124ff5c2ea0cb7 (
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 content %}
|