franca-theme-blog/templates/components/image.j2

11 lines
385 B
Plaintext
Raw Normal View History

2023-07-22 13:18:15 +00:00
{% if post.image %}
2023-07-23 20:14:34 +00:00
<p>
{% if home or section %}
<a href="/{{ language }}{{ url }}" rel="permalink" title="{{ image_title }}">
<img loading="lazy" src="{{ post.thumbnail }}" alt="{{ image_title }}" class="home-image" />
</a>
{% else %}
<img loading="lazy" src="{{ post.image }}" alt="{{ image_title }}" class="post-image" />
{% endif %}
</p>
2023-07-22 13:18:15 +00:00
{% endif %}