templates/components/footer_pre.html.twig line 1

Open in your IDE?
  1. <div class="linkis-footer">
  2.     <div class="main-footer-container linkis-footer-wrapper">
  3.         <div class="linkis-footer__block">
  4.             <header class="linkis-footer__heading">Популярное</header>
  5.             <ul class="linkis-footer__list">
  6.                 {% set popular_items = [] %}
  7.                 {% set popular_items = popular_items|merge([
  8.                     {'text': 'Проверенные', 'href': path('profile_list.list_approved', {'city': city.uriIdentity})},
  9.                     {'text': 'Новые', 'href': path('profile_list.list_new', {'city': city.uriIdentity})},
  10.                     {'text': 'Видео', 'href': path('profile_list.list_with_video', {'city': city.uriIdentity})},
  11.                     {'text': 'Отзывы', 'href': path('profile_list.list_with_comments', {'city': city.uriIdentity})},
  12.                 ]) %}
  13.                 {% if feature('extra_category_with_whatsapp') %}
  14.                     {% set popular_items = popular_items|merge([
  15.                         {'text': 'С вотсап', 'href': path('profile_list.list_with_whatsapp', {'city': city.uriIdentity})},
  16.                     ]) %}
  17.                 {% endif %}
  18.                 {% if feature('extra_category_with_telegram') %}
  19.                     {% set popular_items = popular_items|merge([
  20.                         {'text': 'С телеграм', 'href': path('profile_list.list_with_telegram', {'city': city.uriIdentity})},
  21.                     ]) %}
  22.                 {% endif %}
  23.                 {% if feature('extra_category_outcall') %}
  24.                     {% set popular_items = popular_items|merge([
  25.                         {'text': 'По вызову', 'href': path('profile_list.list_by_on_call', {'city': city.uriIdentity})}
  26.                     ]) %}
  27.                 {% endif %}
  28.                 {% set popular_items = popular_items|merge([
  29.                     {'text': 'Без ретуши', 'href': path('profile_list.list_by_no_retouch', {'city': city.uriIdentity})}
  30.                 ]) %}
  31.                 {% if feature('extra_category_beautiful_prostitutes') %}
  32.                     {% set popular_items = popular_items|merge([
  33.                         {'text': 'Красивые', 'href': path('profile_list.list_beautiful_prostitutes', {'city': city.uriIdentity})}
  34.                     ]) %}
  35.                 {% endif %}
  36.                 {% if feature('extra_category_without_intermediaries') %}
  37.                     {% set popular_items = popular_items|merge([
  38.                         {'text': 'Без посредников', 'href': path('profile_list.list_without_intermediaries', {'city': city.uriIdentity})}
  39.                     ]) %}
  40.                 {% endif %}
  41.                 
  42.                 {% for item in popular_items %}
  43.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  44.                 {% endfor %}
  45.             </ul>
  46.         </div>
  47.         <div class="linkis-footer__block">
  48.             <header class="linkis-footer__heading">Цена</header>
  49.             <ul class="linkis-footer__list">
  50.                 {% set price_items = [
  51.                     {'text': 'Дешевые', 'href': path('profile_list.list_price_low', {'city': city.uriIdentity})},
  52.                     {'text': 'Дорогие', 'href': path('profile_list.list_price_high', {'city': city.uriIdentity})},
  53.                     {'text': 'Элитные', 'href': path('profile_list.list_price_elite', {'city': city.uriIdentity})}
  54.                 ] %}
  55.                 {% for item in price_items %}
  56.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  57.                 {% endfor %}
  58.             </ul>
  59.         </div>
  60.         <div class="linkis-footer__block">
  61.             <header class="linkis-footer__heading">Возраст</header>
  62.             <ul class="linkis-footer__list">
  63.                 {% set age_items = [
  64.                     {'text': 'Зрелые', 'href': path('profile_list.list_age_older_than', {'city': city.uriIdentity})},
  65.                     {'text': 'Молодые', 'href': path('profile_list.list_age_young', {'city': city.uriIdentity})},
  66.                     {'text': 'Старые', 'href': path('profile_list.list_age_starye', {'city': city.uriIdentity})}
  67.                 ] %}
  68.                 {% for item in age_items %}
  69.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  70.                 {% endfor %}
  71.             </ul>
  72.         </div>
  73.         <div class="linkis-footer__block">
  74.             <header class="linkis-footer__heading">Рост</header>
  75.             <ul class="linkis-footer__list">
  76.                 {% set height_items = [
  77.                     {'text': 'Высокие', 'href': path('profile_list.list_height_tall', {'city': city.uriIdentity})},
  78.                     {'text': 'Низкие', 'href': path('profile_list.list_height_short', {'city': city.uriIdentity})}
  79.                 ] %}
  80.                 {% for item in height_items %}
  81.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  82.                 {% endfor %}
  83.             </ul>
  84.         </div>
  85.         <div class="linkis-footer__block">
  86.             <header class="linkis-footer__heading">Цвет волос</header>
  87.             <ul class="linkis-footer__list">
  88.                 {# ENUM! #}
  89.                 {% set hair_color_items = [
  90.                     {'text': 'Брюнетки', 'href': path('profile_list.list_by_hair_color', {'city': city.uriIdentity, 'hairColor': 1|hair_color_uri })},
  91.                     {'text': 'Рыжие', 'href': path('profile_list.list_by_hair_color', {'city': city.uriIdentity, 'hairColor': 3|hair_color_uri })},
  92.                     {'text': 'Блондинки', 'href': path('profile_list.list_by_hair_color', {'city': city.uriIdentity, 'hairColor': 5|hair_color_uri })}
  93.                 ] %}
  94.                 {% for item in hair_color_items %}
  95.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  96.                 {% endfor %}
  97.             </ul>
  98.         </div>
  99.         <div class="linkis-footer__block">
  100.             <header class="linkis-footer__heading"><a href="{{ path('profile_list.intim_services', {'city': city.uriIdentity}) }}">Услуги</a></header>
  101.             <ul class="linkis-footer__list">
  102.                 {# Only hardcode! #}
  103.                 {% set services_items = [
  104.                     {'text': 'БДСМ', 'href': path('profile_list.list_bdsm', {'city': city.uriIdentity})}
  105.                 ] %}
  106.                 {% if (city.id == default_city().id) %}
  107.                     {% set services_items = services_items|merge([
  108.                         {'text': 'Эскорт в СПб', 'href': path('profile_list.list_by_provided_service', {'city': city.uriIdentity, 'service': 'eskort'})}
  109.                     ]) %}
  110.                 {% endif %}
  111.                 {% set services_items = services_items|merge([
  112.                     {'text': 'Анал', 'href': path('profile_list.list_by_provided_service', {'city': city.uriIdentity, 'service': 'seks-analnyij'})},
  113.                     {'text': 'МБР', 'href': path('profile_list.list_by_provided_service', {'city': city.uriIdentity, 'service': 'minet-bez-rezinki'})},
  114.                     {'text': 'Куни', 'href': path('profile_list.list_by_provided_service', {'city': city.uriIdentity, 'service': 'kunnilingus'})},
  115.                     {'text': 'В машине', 'href': path('profile_list.list_by_provided_service', {'city': city.uriIdentity, 'service': 'seks-v-mashine'})}
  116.                 ]) %}
  117.                 {% for item in services_items %}
  118.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  119.                 {% endfor %}
  120.             </ul>
  121.         </div>
  122.         <div class="linkis-footer__block">
  123.             <header class="linkis-footer__heading">Национальность</header>
  124.             <ul class="linkis-footer__list">
  125.                 {# ENUM! #}
  126.                 {% set national_items = [
  127.                     {'text': 'Русские', 'href': path('profile_list.list_by_nationality', {'city': city.uriIdentity, 'nationality': 1|nationality_uri})},
  128.                     {'text': 'Узбечки', 'href': path('profile_list.list_by_nationality', {'city': city.uriIdentity, 'nationality': 14|nationality_uri})},
  129.                     {'text': 'Негритянки', 'href': path('profile_list.list_by_nationality', {'city': city.uriIdentity, 'nationality': 5|nationality_uri})},
  130.                     {'text': 'Азиатки', 'href': path('profile_list.list_by_nationality', {'city': city.uriIdentity, 'nationality': 7|nationality_uri})}
  131.                 ] %}
  132.                 {% for item in national_items %}
  133.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  134.                 {% endfor %}
  135.             </ul>
  136.         </div>
  137.         <div class="linkis-footer__block">
  138.             <header class="linkis-footer__heading">Тело</header>
  139.             <ul class="linkis-footer__list">
  140.                 {# ENUM! #}
  141.                 {% set body_items = [
  142.                     {'text': 'Толстые', 'href': path('profile_list.list_by_body_type', {'city': city.uriIdentity, 'bodyType': 5|body_type_uri})},
  143.                     {'text': 'Худые', 'href': path('profile_list.list_by_body_type', {'city': city.uriIdentity, 'bodyType': 1|body_type_uri})},
  144.                 ] %}
  145.                 {% if feature('extra_category_very_skinny') %}
  146.                     {% set body_items = body_items|merge([
  147.                         {'text': 'Очень худые', 'href': path('profile_list.list_very_skinny', {'city': city.uriIdentity})}
  148.                     ]) %}
  149.                 {% endif %}
  150.                 {% if feature('extra_category_big_ass') %}
  151.                     {% set body_items = body_items|merge([
  152.                         {'text': 'Большая жопа', 'href': path('profile_list.list_big_ass', {'city': city.uriIdentity})}
  153.                     ]) %}
  154.                 {% endif %}
  155.                 {% if feature('extra_category_small_ass') %}
  156.                     {% set body_items = body_items|merge([
  157.                         {'text': 'Маленькая попка', 'href': path('profile_list.list_small_ass', {'city': city.uriIdentity})}
  158.                     ]) %}
  159.                 {% endif %}
  160.                 {% if feature('extra_category_big_breast') %}
  161.                     {% set body_items = body_items|merge([
  162.                         {'text': 'Большая грудь', 'href': path('profile_list.list_big_breast', {'city': city.uriIdentity})}
  163.                     ]) %}
  164.                 {% endif %}
  165.                 {% for item in body_items %}
  166.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  167.                 {% endfor %}
  168.             </ul>
  169.         </div>
  170.         <div class="linkis-footer__block">
  171.             <header class="linkis-footer__heading">Грудь</header>
  172.             <ul class="linkis-footer__list">
  173.                 {# ENUM! #}
  174.                 {% set breast_items = [
  175.                     {'text': 'Натуральная', 'href': path('profile_list.list_by_breast_type', {'city': city.uriIdentity, 'breastType': 1|breast_type_uri})},
  176.                     {'text': 'Силиконовая', 'href': path('profile_list.list_by_breast_type', {'city': city.uriIdentity, 'breastType': 2|breast_type_uri})}
  177.                 ] %}
  178.                 {% for item in breast_items %}
  179.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  180.                 {% endfor %}
  181.             </ul>
  182.         </div>
  183.         <div class="linkis-footer__block">
  184.             <header class="linkis-footer__heading">Гео</header>
  185.             <ul class="linkis-footer__list">
  186.                 {% set geo_items = [
  187.                     {'text': 'На карте', 'href': path('map.page', {'city': city.uriIdentity})},
  188.                     
  189.                 ] %}
  190.                 {% if feature('has_station_list_page')  %}
  191.                     {% set geo_items = geo_items|merge([
  192.                         {'text': 'Метро', 'href': path('station_list.page', {'city': default_city().uriIdentity})}
  193.                     ]) %}
  194.                 {% endif %}
  195.                 {% if default_city().id == city.id %}
  196.                     {% set geo_items = geo_items|merge([
  197.                         {'text': 'Районы', 'href': path('district_list.page', {'city': city.uriIdentity})}
  198.                     ]) %}
  199.                 {% endif %}
  200.                 {% if feature('has_city_list_page') %}
  201.                     {% set geo_items = geo_items|merge([
  202.                         {'text': 'Города', 'href': path('city_list.by_country')}
  203.                     ]) %}
  204.                 {% endif %}
  205.                     
  206.                 {% set geo_items = geo_items|merge([
  207.                     {'text': 'С выездом', 'href': path('profile_list.list_place_take_out', {'city': city.uriIdentity})}, 
  208.                     {'text': 'С апартаментами', 'href': path('profile_list.list_place_apartments', {'city': city.uriIdentity})}
  209.                 ]) %}
  210.                 {% for item in geo_items %}
  211.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  212.                 {% endfor %}
  213.             </ul>
  214.         </div>
  215.         <div class="linkis-footer__block linkis-footer__metro">
  216.             <header class="linkis-footer__heading"><a class="" href="{{ path('station_list.page', {'city': default_city().uriIdentity}) }}">Метро</a></header>
  217.             <ul class="linkis-footer__list">
  218.                 {% set metro_items = [
  219.                     {'text': 'Московская', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'moskovskaya'})},
  220.                     {'text': 'Ладожская', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'ladozhskaya'})},
  221.                     {'text': 'Девяткино', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'devyatkino'})},
  222.                     {'text': 'Пионерская', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'pionerskaya'})},
  223.                     {'text': 'Гражданский проспект', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'grazhdanskij-prospekt'})},
  224.                     {'text': 'Звездная', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'zvyozdnaya'})},
  225.                     {'text': 'Парнас', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'parnas'})},
  226.                     {'text': 'Проспект просвещения', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'prospekt-prosvesheniya'})},
  227.                     {'text': 'Купчино', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'kupchino'})},
  228.                     {'text': 'Невский проспект ', 'href': path('profile_list.list_by_station', {'city': default_city().uriIdentity, 'station': 'nevskij-prospekt'})},
  229.                 ] %}
  230.                 {% for item in metro_items %}
  231.                     <li><a href="{{ item.href }}">{{ item.text }}</a></li>
  232.                 {% endfor %}
  233.                 <li><button class="linkis-footer__metro-all btn btn-reset" data-a11y-dialog-show="metro-box" id="metro-pre-footer">Смотреть все станции</button></li>
  234.             </ul>
  235.         </div>
  236.     </div>
  237. </div>