Mercurial > public > madeira
view mysite/photologue/templates/photologue/photo_archive_month.html @ 33:7d8015de651a
Removed old reference to /media in the admin/base_site.html template for the favicon.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 02 Nov 2011 01:30:46 +0000 |
parents | 0dcfcdf50c62 |
children |
line wrap: on
line source
{% extends "photologue/root.html" %} {% block title %}Photos for {{ month|date:"F Y" }}{% endblock %} {% block content %} <h1>Photos for {{ month|date:"F Y" }}</h1> {% if object_list %} {% for photo in object_list %} <div class="gallery-photo"> <a href="{{ photo.get_absolute_url }}"><img src="{{ photo.get_thumbnail_url }}" alt="{{ photo.title }}"/></a> </div> {% endfor %} {% else %} <p>No photos were found.</p> {% endif %} <p><a href="{% url pl-photo-list 1 %}">View all photographs</a></p> {% endblock %}