Is it possible to inlcude code from a svg file directly into a twig template file?
Something like:
{% include \'my.svg\' %}
that wi
One way of doing this:
{{ source('my.svg') }}
Read more here: https://www.theodo.fr/blog/2017/01/integrating-and-interacting-with-svg-image-files-using-twig/