custom/plugins/RHWebCleue/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.     <div class="top-bar rhweb-topbar d-none d-lg-block py-3">
  4.         <div class="container">
  5.             <nav class="top-bar-nav row">
  6.                 <div class="col-md-4">
  7.                     <div class="d-flex">
  8.                         {% if theme_config('rhweb-topbar-activate-phone') %}
  9.                             <div class="d-flex align-items-center mr-3">
  10.                                 <i class="las la-mobile mr-1" aria-hidden="true"></i> {{ "capriceTheme.topBar.phone"|trans|sw_sanitize }}
  11.                             </div>
  12.                         {% endif %}
  13.                         {% if theme_config('rhweb-topbar-activate-email') %}
  14.                             <div class="d-flex align-items-center">
  15.                                 <i class="las la-envelope mr-1" aria-hidden="true"></i> <a href="mailto:{{ "capriceTheme.topBar.mail"|trans|sw_sanitize }} ">{{ "capriceTheme.topBar.mail"|trans|sw_sanitize }}</a>
  16.                             </div>
  17.                         {% endif %}
  18.                     </div>
  19.                 </div>
  20.                 <div class="col-md-4">
  21.                     <div class="text-center">
  22.                         {% if theme_config('rhweb-topbar-activate-promotion') %}
  23.                             {{ "capriceTheme.topBar.marketingText"|trans|sw_sanitize }}
  24.                         {% endif %}
  25.                     </div>
  26.                 </div>
  27.                 <div class="col-md-4">
  28.                     <div class="d-flex justify-content-end">
  29.                         {% block layout_header_top_bar_language %}
  30.                             {% if theme_config('rhweb-header-layout-topbar-language') %}
  31.                                 {% sw_include '@Storefront/storefront/layout/header/actions/language-widget.html.twig' %}
  32.                             {% endif %}
  33.                         {% endblock %}
  34.                         {% block layout_header_top_bar_currency %}
  35.                             {% if theme_config('rhweb-header-layout-topbar-currency') %}
  36.                                 {% sw_include '@Storefront/storefront/layout/header/actions/currency-widget.html.twig' %}
  37.                             {% endif %}
  38.                         {% endblock %}
  39.                     </div>
  40.                 </div>
  41.             </nav>
  42.         </div>
  43.     </div>
  44. {% endblock %}