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.
 
 
 
 

16 lines
731 B

{% load thumbnail %}
<article class='extended-block'>
<div class='extended-block-img left'>
{% thumbnail object.image.name "190x132" 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 %}/>
</div>
<div class='extended-block-text extended-block-toggle'>
<h3>{{ object.title }}</h3>
{{ object.description|safe }}
</div>
<div class='extended-block-more extended-block-toggle hidden'>
<h3>{{ object.title }}</h3>
{{ object.extended_description|safe }}
</div>
<div class='clear'></div>
</article>