pyfedi/app/templates/post/post_teaser/_image.html

16 lines
839 B
HTML
Raw Permalink Normal View History

<div class="col post_teaser_body">
2024-12-09 09:19:51 +13:00
{% include "post/post_teaser/_title.html" %}
2024-09-06 22:39:27 +12:00
{% if post.image_id and not low_bandwidth -%}
<div class="post_teaser_image_preview">
<a href="{{ post.image.view_url() }}" rel="nofollow ugc" aria-label="{{ _('View image') }}" target="_blank"><img src="{{ post.image.medium_url() }}"
2024-09-09 09:08:34 +12:00
alt="{{ post.image.alt_text if post.image.alt_text else '' }}" loading="lazy" class="{{ ' blur' if blur_content }}" width="{{ post.image.width }}" height="{{ post.image.height }}" /></a>
</div>
{% endif -%}
2024-09-07 12:11:01 +12:00
{% if post.body_html -%}
2024-11-30 13:46:59 +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 22:39:27 +12:00
{% include "post/post_teaser/_utilities_bar.html" %}
</div>