custom/plugins/WynTheme/src/Resources/views/storefront/layout/footer/footer-header.html.twig line 1

Open in your IDE?
  1. {% block container %}
  2.   {% set tag = tag|default('h2') %}
  3.   {% set class = class|default('footer__cell-header') %}
  4.   <{{ tag }}
  5.     {% if id %}id="{{ id }}"{% endif %}
  6.     class="{{ class }}"
  7.   >
  8.     {% block title %}
  9.       {{ title }}
  10.     {% endblock %}
  11.   </{{ tag }}>
  12. {% endblock %}