Files
irma-website/_includes/svg.html
Rowan Goemans 00b1ba1124 irma/main#328
- Cleaned up project structure and removed various unused template stuff.
	- Added i18n lib and split moved all translations to seperate files.
        - Added very simple language selector.
2019-10-29 13:56:58 +01:00

5 lines
330 B
HTML

{% if include.id %}
<svg{% if include.class %} class="{{ include.class }}"{% endif %}{% if include.width %} width="{{ include.width }}"{% endif %}{% if include.height %} height="{{ include.height }}"{% endif %}>
<use xlink:href="{{ "/svg/sprite.symbol.svg" | prepend: site.baseurl_root }}#{{ include.id }}" />
</svg>
{% endif %}