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
690 B
16 lines
690 B
{% load thumbnail %}
|
|
|
|
<div class="one-teaser" data-id="{{ teaser.pk }}">
|
|
{% 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>
|
|
|