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.
 
 
 
 

12 lines
531 B

{% load thumbnail %}
<article class='index-block left'>
<div class='index-block-img'>
{% thumbnail object.image.name "250x110" 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>
<div class='index-block-text'>
<h3>{{ object.title }}</h3>
{{ object.description|safe }}
</div>
</article>