summaryrefslogtreecommitdiff
path: root/templates/archives/photos.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/archives/photos.html')
-rw-r--r--templates/archives/photos.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html
deleted file mode 100644
index bc06f5c..0000000
--- a/templates/archives/photos.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{% extends 'base.html' %}
-{% load typogrify %}
-{% load pagination_tags %}
-
-{% block pagetitle %}Luxagraf | {% if region %}Photo Galleries: Images from {{region.name|title|smartypants|safe}}{%else%}Photo Galleries: Images from Around the World {%endif%} Page {{page}}{% endblock %}
-{% block metadescription %}{% if region %}Photo Galleries from {{region.name|title|smartypants|safe}}{%else%}Photo Galleries: Images from Around the World {%endif%} Page {{page}}{% endblock %}
-
-
-{%block bodyid%}id="photo-archive"{%endblock%}
-
-{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
- <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> &rarr;</li>
- {% if region %}{%if region.name == 'United States'%} <li><a href="/photos/" title="See all Photos" itemprop="url"><span itemprop="title">Photos</span></a> &rarr;</li>
- <li>the United States</li>{%else%}<li><a href="/photos/" title="See all Photos" itemprop="url"><span itemprop="title">Photos</span></a> &rarr;</li> <li>{{region.name|title|smartypants|safe}}{%endif%}{%else%}<li>Photos </li>{%endif%}
- </ul>
- <section>
- <h1 class="hide">{% 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>
- <div class="figure">
- <a href="{{object.get_absolute_url}}" title="view images from {{ object.set_title }}"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}" width="291" height="350" /></a>
- <div class="legend">
- <h1>{{object.set_title}}</h1>
- <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p>
- </div>
- </div>
- </li>{% endfor %}
- </ul>
- </section>
- <div id="pagination">{% paginate %}
- </div>
-{% endblock %}