blob: 67144b3d4eede03e9ea9056c8805b32841d818c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends 'base.html' %}
{% load typogrify %}
{% load html5_datetime %}
{% block pagetitle %}{{block.super}}: Archive{% endblock %}
{% block bodyid %}id="archive"{%endblock%}
{% block primary %}
<p>How did you get here? You URL chopping maniac you. Right on.</p>
<h1>{% if type == 'year' %}{{date}}, on luxagraf{%else%} Archive: {{date}} {% endif %}</h1>{% if type == 'year' %}
<ul class="archive">{% regroup object_list by pub_date.month as entries_by_month %}{% for entries in entries_by_month %}
<li><span>{{ entries.list.0.pub_date|date:"F Y" }}</span>
<ul>{% for post in entries.list %}
<li>
<a href="{{post.get_absolute_url}}" title="{{post.title}}">{{post.title|smartypants|widont|safe }}</a>
<time datetime="{{post.pub_date|html5_datetime}}">{{post.pub_date|date:"M d, Y"}}</time>
</li> {% endfor %}
</ul>
</li>{% endfor %}
</ul>{% else %}
<ul class="archive">{% for post in object_list %}
<li><a href="{{post.get_absolute_url}}" title="{{post.title}}">{{post.title|smartypants|widont|safe }}</a>
<time datetime="{{post.pub_date|html5_datetime}}">{{post.pub_date|date:"M d, Y"}}</time>
</li> {% endfor %}
</ul>
{% endif %}
{% endblock%}
|