zola-theme-terminimal/templates/shortcodes/image.html

4 lines
224 B
HTML
Raw Normal View History

2019-02-05 19:27:02 +01:00
{% if src %}
<img src="{{ src | safe }}"{% if alt %} alt="{{ alt }}"{% endif %} class="{% if position %}{{ position }}{% else -%} center {%- endif %}" {%- if style %} style="{{ style | safe }}" {%- endif %} />
{% endif %}