Files
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

14 lines
450 B
Twig

{% for family,font in fonts %}
/* {{ family }} */
{% for weight,fontData in font %}
{% for type,font_url in fontData %}
@font-face {
font-family: '{{ family }}';
font-style: {{ weight|fontStyle }};
font-weight: {{ weight|fontWeight }};
src: local('{{ family }}'), url({{ font_url }}) format('{{ type | fontType }}');
}
{% endfor %}
{% endfor %}
{% endfor %}