{% 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 and channel.ecomTemplate is not empty %} {% else %} {% endif %} {# #} {# #} {% if channel is defined and channel.ecomColorForText is not empty %} {% endif %} {% if channel is defined and channel.ecomTemplate == 'standard' %} {% 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 %} {% if channel is defined and channel.ecomTemplate == 'niclas' %} {% endif %} {% endblock %} {% macro recursiveCategory(category) %} {% if category.type == 'link' %} {% set url = category.url %} {% else %} {% set url = path('ecom_category', {'channelEcomId': app.request.get('channelEcomId'), 'categorySlug': category.categorySlug}) %} {% endif %}