Files
blog/templates/shortcodes/image.html
daudix fe6de0eb17 Deprecate the animated_favicon variable
APNG seems to be well supported so it's not needed I guess
2024-06-21 20:39:43 +03:00

22 lines
551 B
HTML

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