{% extends 'grid.html.twig' %}
{% set linkLangSupport = app.request.locale == 'en' ? '/en' : '' %}
{% block title %}Проститутки по метро в Москве{% endblock %}
{% block metaDescription %}<meta name="description" content="Выбор проституток Москвы по станциям метро позволяет не терять время на поездки.">{% endblock %}
{% block mainContainer %}
{{ knp_menu_render('breadcrumbs', {'template': '__design/v2023/_menu/breadcrumbs.html.twig'}) }}
<div class="heading d-flex">
<h1 class="heading-title text-title mr-1" role="heading">{{ seo_heading() ? seo_heading() : 'Проститутки и индивидуалки по станциям метро' }}</h1>
</div>
<div class="catalog-metro-container white-block mb-4">
{% set firstLetter = null %}
{% set sorted_stations = stations|sort((a, b) => a.name|upper <=> b.name|upper) %}
{% for station in sorted_stations %}
{% set firstChar = station.name|slice(0, 1)|upper %}
{% if firstLetter != firstChar %}
{% if loop.index != 1 %}</div>{% endif %}
{% set firstLetter = firstChar %}
<div class="catalog catalog-metro mb-4">
<div class="first-letter mb-2 fw-700 d-flex-c">
{{ firstLetter }}
</div>
{% endif %}
<div class="catalog-item">
<a class="metro-link d-flex-c" href="{{ path('profile_list.list_by_station', {'city': city.uriIdentity, 'station': station.uriIdentity}) }}">
{% include 'components/metro/icon_generate.partial.twig' with {data: station.id|station_lines} %}
<span class="metro-name mr-1">{{ station.name|trans }}</span>
<span class="metro-count d-flex-c clr-main-text fw-600">{{ count_by_stations[station.id] is defined ? count_by_stations[station.id] : '0' }}</span>
</a>
</div>
{% endfor %}
</div>
{# <div class="new-questionare">
{{ include('components/last_girl_list.html.twig') }}
</div> #}
{# {{ include('components/seo_text.html.twig', { 'type': 'bottom', "noindex": true }) }} #}
{% endblock %}