You are here

svg-image-field-formatter.html.twig in SVG Image Field 2.1.x

{% if link_url %}
  <a href="{{ link_url }}">
{% endif %}
{% if inline %}
  {{ svg_data|raw }}
{% else %}
  <img{{ attributes }} src="{{ file_url(uri) }}" />
{% endif %}
{% if link_url %}
  </a>
{% endif %}

File

templates/svg-image-field-formatter.html.twig
View source
  1. {% if link_url %}
  2. <a href="{{ link_url }}">
  3. {% endif %}
  4. {% if inline %}
  5. {{ svg_data|raw }}
  6. {% else %}
  7. <img{{ attributes }} src="{{ file_url(uri) }}" />
  8. {% endif %}
  9. {% if link_url %}
  10. </a>
  11. {% endif %}