summaryrefslogtreecommitdiff
path: root/templates/archives/photos.html
diff options
context:
space:
mode:
authorluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-01-30 19:19:30 +0000
committerluxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f>2010-01-30 19:19:30 +0000
commit0882d73ca1ba4c84ce24c946548c80d9e4d1c04e (patch)
tree605e2284e175e80477fd7b6a6e9e2a2fcae94236 /templates/archives/photos.html
parent7300519c054838511ba2584394620d0841b88e5f (diff)
added topics to posts
Diffstat (limited to 'templates/archives/photos.html')
-rw-r--r--templates/archives/photos.html6
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 %}