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

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

{% block page-header %}Photos 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>

{% endblock %}