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/bin | |
parent | f0f6aca044d63d973cccd476662e41db6bf3d00a (diff) |
added image dimensions and fixed css bugs
Diffstat (limited to 'templates/bin')
-rw-r--r-- | templates/bin/recent_entries.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/bin/recent_entries.html b/templates/bin/recent_entries.html index c585245..0ee93b6 100644 --- a/templates/bin/recent_entries.html +++ b/templates/bin/recent_entries.html @@ -7,7 +7,7 @@ </span> <time datetime="{{object.pub_date|date:'c'}}">{{object.pub_date|date:"m/d/y"}}</time> </p> - {%if object.thumbnail%}<img src="{{object.get_thumbnail_url}}" alt="{{ object.title }}" class="post-image" />{%endif%} + {%if object.thumbnail%}<img src="{{object.get_thumbnail_url}}" alt="{{ object.title }}" class="post-image" width="{{object.thumb_width}}" height="{{object.thumb_height}}" />{%endif%} <p class="hyphenate">{{object.dek|safe}}</p> <span class="button"><a class="permalink" href="{{object.get_absolute_url}}" title="{{object.title}}">More »</a></span> </article>{% endfor %} |