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.
 
 
 
 
 
 

32 lines
1.1 KiB

{% if page_teasers %}
{% load thumbnail %}
<div class="page-teasers">
{% for teaser in page_teasers %}
<div class="teaser{% if forloop.counter|divisibleby:2 %}-last-in-row{% endif %}">
{% if teaser.image %}
{% thumbnail teaser.image "120x120" as img %}
<div class="image">
<a href="{% if request.is_secure %}https{% else %}http{% endif %}://{{ request.get_host }}{{ teaser.get_url }}">
<img src="{{ img.url }}" width="{{ img.width }}" height="{{ img.height }}">
</a>
</div>
{% endthumbnail %}
{% endif %}
<a class="title" href="{% if request.is_secure %}https{% else %}http{% endif %}://{{ request.get_host }}{{ teaser.get_url }}">{{ teaser }}</a>
<p class="body">{{ teaser.body }}</p>
</div>
{% if forloop.counter|divisibleby:2 %}
<div class="clear"></div>
{% endif %}
{% endfor %}
{% if not forloop.counter|divisibleby:2 %}
<div class="clear"></div>
{% endif %}
</div>
{% endif %}