{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% block layout_head_stylesheet %}
{{ parent() }}
{% set zenFontChange = context.context.extensions['zenitPlatformFontChange'].config %}
{% block zenit_font_change_css %}
{% if zenFontChange.customCSS %}
<style type="text/css" data-plugin="zenitPlatformFontChange">
{{ zenFontChange.customCSS|raw }}
</style>
{% endif %}
{% endblock %}
{% block zenit_font_change_extern_files %}
{% set files = zenFontChange.externFiles|split('\n') %}
{% for file in files %}
{% if file|length %}
<link rel="stylesheet" href="{{ file }}">
{% endif %}
{% endfor %}
{% endblock %}
{% endblock %}