summaryrefslogtreecommitdiff
path: root/templates/archives/photos.html
blob: f44265dd29de6a5d14f4b1fa2236f92b5c02cdc6 (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
27
{% extends 'base.html' %}
{% load typogrify %}
{% load pagination_tags %}

{% block pagetitle %}Luxagraf | {% if region %}Photos from {{region.name|title|smartypants|safe}}{%else%}Photos from Around the World {%endif%}{% endblock %}
{% block metadescription %}Photo Archive, Luxagraf{% endblock %}


{%block bodyid%}id="photo-archive"{%endblock%}

{% block primary %}
        <article>
            <h1>{% if region %}Photographs from {{region.name|title|smartypants|safe}}{%else%}Photographs from Around the World {%endif%}</h1>
            <ul id="photo-galleries">{% autopaginate object_list 18 %} {% for object in object_list %}
                <li>
                    <a href="{%comment%}{{object.get_absolute_url}}{%endcomment%}http://www.flickr.com/photos/luxagraf/sets/{{object.set_id}}/show/"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a>
                    <h3>{{object.set_title}}</h3>
                    <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p>
                </li>{% endfor %}
            </ul>
            
            <section id="pagination">
                <ul>{% paginate %}
                </ul>
            </section>
        </article>
{% endblock %}