summaryrefslogtreecommitdiff
path: root/templates/photologue/gallery_archive_year.html
blob: b3c33566c0cd8067ef20170aa8e7b20a93ae96bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "photologue/root.html" %}

{% block title %}Galleries for {{ year }}{% endblock %}

{% block page-header %}Galleries for {{ year }}{% endblock %}
{% block content %}

<ul>
{% for date in date_list %}
<li><a href="{{ date|date:"M"|lower }}/">{{ date|date:"F" }}</a></li>
{% endfor %}
</ul>

<p><a href="{% url pl-gallery-list 1 %}">View all galleries.</a></p>

{% endblock %}