diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-09-14 22:41:12 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-09-14 22:41:12 +0000 |
commit | ad23af9549c4bc23ab345966d977e1f5d69ac03d (patch) | |
tree | 32b5cf3f81f10b0716aa0a9959c3ded9118f528b /templates/archives/photos.html | |
parent | a851eba9a0f5928d8c53eea443fa2e8ba337d3a5 (diff) |
added microdata to breadcrumbs
Diffstat (limited to 'templates/archives/photos.html')
-rw-r--r-- | templates/archives/photos.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html index 85bc498..1eacf3c 100644 --- a/templates/archives/photos.html +++ b/templates/archives/photos.html @@ -12,10 +12,10 @@ <article> <h1>{% if region %}Photographs from {{region.name|title|smartypants|safe}}{%else%}Photographs from Around the World {%endif%}</h1> - <ul id="breadcrumbs"> - <li><a href="/" title="luxagraf homepage">Home</a> →</li> - {% if region %}{%if region.name == 'United States'%} <li><a href="/photos/" title="See all Photos">Photos</a> →</li> - <li>the United States</li>{%else%}<li><a href="/photos/" title="See all Photos">Photos</a> →</li> <li>{{region.name|title|smartypants|safe}}{%endif%}{%else%}Photos </li>{%endif%} + <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%}Photos </li>{%endif%} </ul> <ul id="photo-galleries">{% autopaginate object_list 18 %} {% for object in object_list %} |