You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
535 B

{% load thumbnail %}
<li>
{% thumbnail object.image.name "650x450" crop="center" as img %}
<img src="{{ img.url }}" width="{{ img.width }}" height="{{ img.height }}" {% if picture.alt %}alt="{{ picture.alt }}" {% endif %}{% if picture.longdesc %}title="{{ picture.longdesc }}" {% endif %}/>
{% endthumbnail %}
<div class='index-banner-caption'>
{% if object.title %}<h1>{{ object.title }}</h1>{% endif %}
{{ object.description|safe|default:'' }}
</div>
</li>