diff options
Diffstat (limited to 'templates/archives/photos.html')
-rw-r--r-- | templates/archives/photos.html | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html index e31bd05..bc06f5c 100644 --- a/templates/archives/photos.html +++ b/templates/archives/photos.html @@ -8,16 +8,13 @@ {%block bodyid%}id="photo-archive"{%endblock%} -{% 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 class="bl"> - <ul id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> - <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> →</li> - {% if region %}{%if region.name == 'United States'%} <li><a href="/photos/" title="See all Photos" itemprop="url"><span itemprop="title">Photos</span></a> →</li> - <li>the United States</li>{%else%}<li><a href="/photos/" title="See all Photos" itemprop="url"><span itemprop="title">Photos</span></a> →</li> <li>{{region.name|title|smartypants|safe}}{%endif%}{%else%}<li>Photos </li>{%endif%} - </ul> - </nav> - </section> +{% 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> →</li> + {% if region %}{%if region.name == 'United States'%} <li><a href="/photos/" title="See all Photos" itemprop="url"><span itemprop="title">Photos</span></a> →</li> + <li>the United States</li>{%else%}<li><a href="/photos/" title="See all Photos" itemprop="url"><span itemprop="title">Photos</span></a> →</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"> @@ -29,6 +26,7 @@ </div> </li>{% endfor %} </ul> - <nav id="pagination">{% paginate %} - </nav> -{% endblock %}
\ No newline at end of file + </section> + <div id="pagination">{% paginate %} + </div> +{% endblock %} |