view photologue/templates/photologue/photo_archive_month.html @ 123:16eec10a308e

Bootstrap: navbar styling.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Oct 2013 10:35:40 -0500
parents e2868ad47a1e
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 %}