diff options
author | luxagraf <luxagraf@gmail.com> | 2011-08-16 22:07:54 -0400 |
---|---|---|
committer | luxagraf <luxagraf@gmail.com> | 2011-08-16 22:07:54 -0400 |
commit | 0b481fd7931c2ae20ca21f89a87f2ba6a6c01e10 (patch) | |
tree | fbcb1ccee6512aa91b665f231a4405ecedef439f /templates/details/photo_galleries.html | |
parent | 5e76a7bbb5d114ecd310ad3f408c33331a072037 (diff) |
cleaned up html in archives, eliminated some nav and section tags
Diffstat (limited to 'templates/details/photo_galleries.html')
-rw-r--r-- | templates/details/photo_galleries.html | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/templates/details/photo_galleries.html b/templates/details/photo_galleries.html index 6e4f4d5..e61c9b7 100644 --- a/templates/details/photo_galleries.html +++ b/templates/details/photo_galleries.html @@ -10,19 +10,14 @@ {%block bodyid%}class="image_gallery"{%endblock%} -{% block primary %}<section id="page-header"> - <h1 class="hide">Photos from {{object.set_title}}</h1> - <nav class="bl" id="page-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> → </li> - <li><a href="/photos/" title="See all Photos" itemprop="url"><span>Photos</span></a> →</li> - <li>{{object.set_title}}</li> - </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> + <li><a href="/photos/" title="See all Photos" itemprop="url"><span>Photos</span></a> →</li> + <li>{{object.set_title}}</li> + </ul> <p class="directions">Use left/right arrow keys to navigate through photos</p> <section id="slides"> - {%for photo in object.photos.all reversed %} + <h1 class="hide">Photos from {{object.set_title}}</h1>{%for photo in object.photos.all reversed %} <article id="image-{{forloop.counter}}"> <h6><a href="#image-{{forloop.counter}}" class="permalink" title="link to this image">∞ {{forloop.counter|number_to_word}} ∞</a></h6> <div class="fig"><img src="{{photo.get_local_slideshow_url}}" alt="{{photo.title}}" title="{{photo.title}}" {%if photo.is_portait %}class="v"{%endif%} height="{{photo.slideshowimage_height}}" width="{{photo.slideshowimage_width}}" /></div> |