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.html44
1 files changed, 19 insertions, 25 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html
index 1eacf3c..eeb6451 100644
--- a/templates/archives/photos.html
+++ b/templates/archives/photos.html
@@ -8,33 +8,27 @@
{%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>
-
+{% block primary %}<section id="page-header">
+ <h1 class="hide">{% if region %}Photographs from {{region.name|title|smartypants|safe}}{%else%}Photographs from Around the World {%endif%}</h1>
+ <nav>
<ul 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%}Photos </li>{%endif%}
+ <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>
-
- <ul id="photo-galleries">{% autopaginate object_list 18 %} {% for object in object_list %}
- <li>
- <div class="figure">
- <a href="{{object.get_absolute_url}}"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a>
- <span class="legend">
- <h3>{{object.set_title}}</h3>
- <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p>
- </span>
- </div>
- </li>{% endfor %}
- </ul>
-
-
-
- <section id="pagination">
- <ul>{% paginate %}
- </ul>
- </section>
- </article>
+ </nav>
+ </section>
+ <ul id="photo-galleries">{% autopaginate object_list 18 %} {% for object in object_list %}
+ <li>
+ <div class="figure">
+ <a href="{{object.get_absolute_url}}"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a>
+ <div class="legend">
+ <h3>{{object.set_title}}</h3>
+ <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p>
+ </div>
+ </div>
+ </li>{% endfor %}
+ </ul>
+ <nav id="pagination">{% paginate %}
+ </nav>
{% endblock %} \ No newline at end of file