diff options
Diffstat (limited to 'bn_django')
-rw-r--r-- | bn_django/templates/frontpage.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bn_django/templates/frontpage.html b/bn_django/templates/frontpage.html index 26b369d..17f9aac 100644 --- a/bn_django/templates/frontpage.html +++ b/bn_django/templates/frontpage.html @@ -38,10 +38,13 @@ Other sites: <br /> <h2 class="ruled">Photos!</h2> {% if latest_photos %} +<table class="thumbs" width="100%"><tbody><tr> {% for photo in latest_photos %} +<td class="photo_thumb"> <a href="{{ photo.get_absolute_url }}"><img src="{{ photo.thumburl }}" - alt="{{ photo.title }}" /></a> + alt="{{ photo.title }}" /></a> </td> {% endfor %} +</tbody></table> {% else %} <br/><br />None yet! {% endif %} |