picture_everywhere-1.0.0/templates/svg-image-field-formatter.html.twig
templates/svg-image-field-formatter.html.twig
{% if link_url %}
<a href="{{ link_url }}">
{% endif %}
{% if inline %}
{{ svg_data|raw }}
{% else %}
<picture{{ picture_attributes }}>
<img{{ attributes }} src="{{ file_url(uri) }}" />
</picture>
{% endif %}
{% if link_url %}
</a>
{% endif %}
