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

11 lines
429 B
Plaintext
Raw Normal View History

2023-07-22 13:18:15 +00:00
{% if post.image %}
<p>
{% if home or section %}
<a href="/{{ language }}{{ url }}" rel="permalink" title="{{ image_title }}">
2023-07-23 19:42:50 +00:00
<img data-src="{{ post.thumbnail }}" alt="{{ image_title }}" class="home-image lozad" />
2023-07-22 13:18:15 +00:00
</a>
{% else %}
2023-07-23 16:02:45 +00:00
<img data-src="{{ post.image }}" alt="{{ image_title }}" class="post-image lozad" />
2023-07-22 13:18:15 +00:00
{% endif %}
</p>
{% endif %}