templates/__design/v2023/components/footer.html.twig line 1

Open in your IDE?
  1. <footer class="footer">
  2.     <div class="container">
  3.         <div class="footer-content d-flex">
  4.             <div class="footer-logotype__container">
  5.                 <a class="footer-logotype" href="{{ logoUrl }}">
  6.                     <img class="logotype-image" width="200" height="56"
  7.                         src="{{ asset('assets/images/logo.svg') }}"
  8.                         alt="Проститутки - {{ actual_main_domain }}">
  9.                 </a>
  10.                 <a class="btn btn-white-border" href="{{ path('login') }}" id="add-profile">
  11.                     <svg class="btn-icon" width="25" height="25" fill="none"><path d="M19.5 13.096h-6v6h-2v-6h-6v-2h6v-6h2v6h6v2Z"/></svg>
  12.                     <span class="btn-text">Добавить анкету</span>
  13.                 </a>
  14.             </div>
  15.             <nav class="footer-nav" role="menu">
  16.                 {% set menuItemClass = "footer-nav__link clr-white-text d-flex-c" %}
  17.                 <a class="{{ menuItemClass }}" href="{{ path('homepage') }}" role="menuitem">Индивидуалки</a>
  18.                 <a class="{{ menuItemClass }}" href="{{ path('masseur_list.page', {'city': city.uriIdentity}) }}" role="menuitem">Массажистки</a>
  19.                 <a class="{{ menuItemClass }}" href="{{ path('saloon_list.list_by_city', {'city': city.uriIdentity}) }}" role="menuitem">Интим-салоны</a>
  20.                 {# <a class="{{ menuItemClass }}" href="{{ path('profile_list.list_archived', {'city': city.uriIdentity}) }}" role="menuitem">Архив анкет</a> #}
  21.                 <a class="{{ menuItemClass }}" href="{{ path('profile_search.page', {'city': city.uriIdentity}) }}" role="menuitem">Подбор анкет</a>
  22.                 <a class="{{ menuItemClass }}" href="{{ path('profile_list.list_approved', {'city': city.uriIdentity}) }}" role="menuitem">Проверенные</a>
  23.                 <a class="{{ menuItemClass }}" href="{{ path('profile_list.list_bdsm', {'city': city.uriIdentity}) }}" role="menuitem">БДСМ</a>
  24.                 <button class="{{ menuItemClass }} btn-reset" type="button" onclick="location='{{ path('static_page.license', {'city': city.uriIdentity}) }}'" role="menuitem">Условия использования</button>
  25.                 <a class="{{ menuItemClass }}" href="{{ path('map.page', {'city': city.uriIdentity}) }}" role="menuitem">Интим-карта</a>
  26.                 <a class="{{ menuItemClass }}" href="/city/" role="menuitem">По городам</a>
  27.                 {% if isDefaultCity %}
  28.                     <a class="{{ menuItemClass }}" href="{{ path('district_list.page', {'city': city.uriIdentity}) }}" role="menuitem">Поиск по районам</a>
  29.                 {% endif %}
  30.                 {% if isDefaultCity %}
  31.                     <a class="{{ menuItemClass }}" href="{{ path('station_list.page', {'city': city.uriIdentity}) }}" role="menuitem">Станции метро</a>
  32.                 {% endif %}
  33.                 <a class="{{ menuItemClass }}" href="{{ path('entry_page') }}" role="menuitem">Вход</a>
  34.             </nav>
  35.         </div>
  36.     </div>
  37.     {# {{dump(app.user)}} #}
  38.     {# <a class="right-menu-list__link is-flex level"href="{{ path('logout') }}">
  39.                             <svg class="right-menu-list__icon"xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none"><path fill="#FF3F40" fill-rule="evenodd" d="M9 1.5a7.5 7.5 0 10-.01 14.99A7.5 7.5 0 009 1.5zM9 15a6 6 0 11.02-12.02A6 6 0 019 15zm0-7.06l2.7-2.69 1.05 1.06L10.05 9l2.7 2.7-1.06 1.05L9 10.05l-2.7 2.7-1.05-1.06L7.95 9l-2.7-2.7 1.06-1.05L9 7.95z" clip-rule="evenodd"/></svg>
  40.                             <span>Выход</span>
  41.                         </a> #}
  42.     <div class="footer__copyright d-flex-c" role="contentinfo">
  43.         {# <p class="mb-1">© 2007 - {{ "now"|date("Y") }}, МосДосуг</p> #}
  44.         <img loading="lazy" src="{{ asset('assets/images/footer-email.png')}}" alt="Email" class="lazy" width="178" height="21">
  45.     </div>
  46. </footer>