2024-11-24 09:19:58 +13:00
|
|
|
<div class="col post_teaser_body">
|
2024-12-09 09:19:51 +13:00
|
|
|
{% include "post/post_teaser/_title.html" %}
|
2024-09-07 12:11:01 +12:00
|
|
|
{% if post.body_html -%}
|
2024-11-24 09:19:58 +13:00
|
|
|
<div class="post_teaser_link_preview small post_teaser_clickable">
|
2024-09-07 12:11:01 +12:00
|
|
|
{{ first_paragraph(post.body_html) | safe }}
|
|
|
|
</div>
|
|
|
|
{% endif -%}
|
2024-09-06 15:43:22 +12:00
|
|
|
{% include "post/post_teaser/_utilities_bar.html" %}
|
|
|
|
</div>
|
2024-09-06 22:39:27 +12:00
|
|
|
{% if post.image_id -%}
|
2024-09-06 15:43:22 +12:00
|
|
|
<div class="col col-2 col_thumbnail">
|
|
|
|
<div class="thumbnail{{ ' lbw' if low_bandwidth }}" aria-hidden="true">
|
|
|
|
{% if low_bandwidth -%}
|
|
|
|
<a href="{{ post.url }}" rel="nofollow ugc" target="_blank" aria-label="{{ _('Follow link') }}"><span class="fe fe-external"></span></a>
|
|
|
|
{% else -%}
|
|
|
|
<a href="{{ post.url }}" rel="nofollow ugc" target="_blank" aria-label="{{ _('Read article') }}"><span class="fe fe-external"></span><img src="{{ post.image.thumbnail_url() }}"
|
|
|
|
alt="{{ post.image.alt_text if post.image.alt_text else '' }}" loading="lazy" class="{{ ' blur' if blur_content }}" /></a>
|
|
|
|
{% endif -%}
|
|
|
|
</div>
|
2024-09-06 22:39:27 +12:00
|
|
|
</div>
|
2024-10-01 21:48:27 +00:00
|
|
|
{% endif -%}
|