diff options
Diffstat (limited to 'templates/archives/photos.html')
-rw-r--r-- | templates/archives/photos.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html index f44265d..b2ef4f7 100644 --- a/templates/archives/photos.html +++ b/templates/archives/photos.html @@ -2,8 +2,8 @@ {% load typogrify %} {% load pagination_tags %} -{% block pagetitle %}Luxagraf | {% if region %}Photos from {{region.name|title|smartypants|safe}}{%else%}Photos from Around the World {%endif%}{% endblock %} -{% block metadescription %}Photo Archive, Luxagraf{% endblock %} +{% block pagetitle %}Luxagraf | {% if region %}Photo Galleries: Images from {{region.name|title|smartypants|safe}}{%else%}Photo Galleries: Images from Around the World {%endif%}{% endblock %} +{% block metadescription %}{% if region %}Photo Galleries from {{region.name|title|smartypants|safe}}{%else%}Photo Galleries: Images from Around the World {%endif%}{% endblock %} {%block bodyid%}id="photo-archive"{%endblock%} @@ -13,7 +13,7 @@ <h1>{% 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> - <a href="{%comment%}{{object.get_absolute_url}}{%endcomment%}http://www.flickr.com/photos/luxagraf/sets/{{object.set_id}}/show/"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a> + <a href="{{object.get_absolute_url}}"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a> <h3>{{object.set_title}}</h3> <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p> </li>{% endfor %} |