diff options
author | luxagraf <sng@luxagraf.net> | 2011-01-23 16:34:38 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2011-01-23 16:34:38 -0500 |
commit | b8d1913c21a7c0d80359f19aba8a4bc3ccd1e606 (patch) | |
tree | 214283104b3eb8e68b71d168ccec37fd667f87c8 /templates/archives/photos.html | |
parent | f0f6aca044d63d973cccd476662e41db6bf3d00a (diff) |
added image dimensions and fixed css bugs
Diffstat (limited to 'templates/archives/photos.html')
-rw-r--r-- | templates/archives/photos.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html index e8a881d..154be5a 100644 --- a/templates/archives/photos.html +++ b/templates/archives/photos.html @@ -21,7 +21,7 @@ <ul id="photo-galleries">{% autopaginate object_list 18 %} {% for object in object_list %} <li> <div class="figure"> - <a href="{{object.get_absolute_url}}"><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 }}" width="291" height="350" /></a> <div class="legend"> <h3>{{object.set_title}}</h3> <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p> |