<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
{% set city = app.request.attributes.get('city', default_city()) %}
{% set metro = app.request.attributes.get('station') ? app.request.attributes.get('station').name|trans : '' %}
{% set months = {
"January": "Январь",
"February": "Февраль",
"March": "Март",
"April": "Апрель",
"May": "Май",
"June": "Июнь",
"July": "Июль",
"August": "Август",
"September": "Сентябрь",
"October": "Октябрь",
"November": "Ноябрь",
"December": "Декабрь"
} %}
{% set view = 'public' %}
{% set alternateLang = city.countryCode == "RU" ? 'ru' :
city.countryCode == "UA" ? 'ua' : '' %}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta content="Стрелочки24" name="author"/>
<meta name="HandheldFriendly" content="true"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<title>{% apply spaceless %}{% block title %}{% endblock %}{% endapply %}</title>
{% block metaDescription %}
<meta name="description" content="">
{% endblock %}
{% block metaKeywords %}{% endblock %}
{% block metaRobots %}{% endblock %}
{% block stylesheet %}
{{ encore_entry_link_tags("styles/public", null, 'basicConfig') }}
{{ encore_entry_link_tags('scripts/index', null, 'basicConfig') }}
{% endblock %}
<!-- Icons -->
<link rel="icon" href="{{ asset('assets/images/favicon/favicon.ico')}}" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('assets/images/favicon/apple-touch-icon.png')}}" type="image/png">
<link rel="manifest" href="{{ asset('assets/images/favicon/manifest.json')}}">
{% block canonical %}<link rel="canonical" href="{{ canonical_url() }}">{% endblock %}
{# {% if alternateLang != '' %}<link rel="alternate" href="{{ canonical_url() }}">{% endif %} #}
{% if ym_tracker_id %}
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym({{ ym_tracker_id }}, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true
});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/{{ ym_tracker_id }}" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
{% endif %}
{% if ga_tracker_id %}
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ ga_tracker_id }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ ga_tracker_id }}');
</script>
{% endif %}
{% block alternate %}{% endblock %}
</head>
{% set linkLangSupport = app.request.locale == 'en' ? '/en' : '' %}
<body data-current-page="{% block name_page %}index{% endblock %}"
data-id="strelki"{% if is_granted('ROLE_USER') %} data-login="true"{% endif %}
{% block account_page %}data-kab="false"{% endblock %}
data-svg-path="{{ asset('assets/images/icons/svg-library.svg') }}"
class="{% block bodyClasses %}{% endblock %}">
<div class="wrapper">
{% block header %}
{% include 'components/header.html.twig' %}
{% endblock %}
{% block grid %}{% endblock %}
{% block footer %}
{% include 'components/footer.html.twig' %}
{% endblock %}
</div>
{% block modals %}
{% include 'components/modals.html.twig' %}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('scripts/scripts_bootstrap', null, 'basicConfig') }}
{{ encore_entry_script_tags('scripts/scripts_main', null, 'basicConfig') }}
{{ encore_entry_script_tags('scripts/index', null, 'basicConfig') }}
{% include 'components/profile_ctr.js.twig' %}
{% endblock %}
</body>
</html>