custom/plugins/CogiThemeTulip/src/Resources/views/storefront/layout/header/top-bar.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/header/top-bar.html.twig' %}
  2. {% block layout_header_top_bar %}
  3. {% if app.request.attributes.get('theme-name') != 'CogiThemeTulip' %}
  4. {{ parent() }}
  5. {% else %}
  6.     <div class="top-bar row">
  7.         <nav class="top-bar-nav col">
  8.             {% block layout_header_top_bar_language %}
  9.                 {{ parent() }}
  10.             {% endblock %}
  11.             {% block layout_header_top_bar_currency %}
  12.                 {{ parent() }}
  13.             {% endblock %}
  14.             {% block layout_header_top_bar_service %}
  15.                 {{ parent() }}
  16.             {% endblock %}
  17.         </nav>
  18.         <nav class="top-bar-nav top-bar-nav-right col">
  19.             {% if shopware.config.CogiThemeTulip.config.headerPhone %}
  20.                 <div class="top-bar-nav-item top-bar-phone">
  21.                     <a href="phone:{{ config('CogiThemeTulip.config.headerPhone') }}">
  22.                         {% sw_icon 'headset' style {
  23.                             'size': 'xs'
  24.                         } %} {{ config('CogiThemeTulip.config.headerPhone') }}
  25.                     </a>
  26.                 </div>
  27.             {% endif %}
  28.             {% if shopware.config.CogiThemeTulip.config.headerContact %}
  29.                 <div class="top-bar-nav-item top-bar-contact">
  30.                     {% set href = config('CogiThemeTulip.config.headerContact') %}
  31.                     <a href="{% if '@' in href %}mailto:{% endif %}{{ href }}">
  32.                         {% sw_icon 'envelope' style {
  33.                             'size': 'xs'
  34.                         } %} {{ "cogi.theme.tulip.contact"|trans|sw_sanitize }}
  35.                     </a>
  36.                 </div>
  37.             {% endif %}
  38.         </nav>
  39.     </div>
  40. {% endif %}
  41. {% endblock %}