{% extends 'base.html.twig' %} {% block title %} {% if channel is defined %} {{ channel.channelName }} {% endif %} {% endblock %} {% block meta %} {% if channel is defined %} {% if channel.banner is not empty %} {% endif %} {% if channel.ecomFavicon is not empty %} {% endif %} {% endif %} {% endblock %} {% block stylesheets %} {% if channel is defined %} {% if channel.ecomColorBackground is not empty %} {% endif %} {% if channel.ecomColor is not empty %} {% set color = channel.ecomColor %} {% set colorText = channel.ecomColorForText %} {% endif %} {% if channel.ecomColorBoxes is not empty %} {% endif %} {% if channel.ecomColorBackgroundText is not empty %} {% endif %} {% endif %} {% endblock %} {% block body %} {{ include('webshop/__header.html.twig') }} {% block banner %}{% endblock %}
{% for message in app.flashes('success') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %} {% block content %}{% endblock %}
{{ include('webshop/__footer.html.twig') }} {{ include('webshop/__cart_modal.html.twig') }} {% endblock %} {% block javascripts %} {% endblock %}