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.
15 lines
545 B
15 lines
545 B
{% load thumbnail %}
|
|
|
|
<div class="letter-teaser" data-id="{{ teaser.pk }}">
|
|
{% if teaser.image %}
|
|
{% thumbnail teaser.image "60x60" as img %}
|
|
<div class="image">
|
|
<a href="http://{{ request.get_host }}{{ teaser.get_url }}">
|
|
<img src="{{ img.url }}" width="{{ img.width }}" height="{{ img.height }}">
|
|
</a>
|
|
</div>
|
|
{% endthumbnail %}
|
|
{% endif %}
|
|
|
|
<a class="title" href="http://{{ request.get_host }}{{ teaser.get_url }}">{{ teaser }}</a>
|
|
</div>
|
|
|