custom/plugins/BettenABC/src/Resources/views/theme/layout/header/top-bar/items/phone.html.twig line 1

Open in your IDE?
  1. {#
  2. # Project:      www.betten-abc.de
  3. # Company:      arboro GmbH
  4. # Created by:   Daniel Geike
  5. # Created on:   29.03.22
  6. # Description:
  7. #}
  8. {% block theme_layout_header_top_bar_phone %}
  9.     {% block theme_layout_header_top_bar_phone_icon %}
  10.         <div class="top-bar-item-icon top-bar-phone-icon">
  11.             {% block theme_layout_header_top_bar_phone_icon_inner %}
  12.                 {% sw_icon "phone" %}
  13.             {% endblock %}
  14.         </div>
  15.     {% endblock %}
  16.     {% block theme_layout_header_top_bar_phone_number %}
  17.         <div class="top-bar-item-content top-bar-phone-content">
  18.             {% block theme_layout_header_top_bar_phone_number_inner %}
  19.                 {% block theme_layout_header_top_bar_phone_number_link %}
  20.                     <a class="top-bar-item-link top-bar-phone-link" href="tel:{{ theme_config("phone")|replace({
  21.                         " ": ""
  22.                     }) }}">
  23.                         {{ theme_config("phone") }}
  24.                     </a>
  25.                 {% endblock %}
  26.             {% endblock %}
  27.         </div>
  28.     {% endblock %}
  29. {% endblock %}