Files
blog/templates/shortcodes/image.html
2024-01-30 21:02:45 +03:00

15 lines
411 B
HTML

<a href="{{url}}">
<img
class="
{% if full %}full{% endif %}
{% if pixels %}pixels{% endif %}
{% if transparent %}transparent{% endif %}
{% if inline %}inline{% endif %}
{% if no_hover %}no-hover{% endif %}
{% if no_margin %}no-margin{% endif %}
"
{% if alt %}alt="{{alt}}"{% endif %}
src="{% if url_min %}{{url_min}}{% else %}{{url}}{% endif %}"
/>
</a>