<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
<head>
<meta charset="UTF-8">
<title>{% block title %}{{ "Shop" | trans }}{% endblock %}</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block meta %}
<meta name="description" content="{{ appText.meta.HEADER_DESCRIPTION[app.request.locale] }}">
<meta name="keyword" content="{{ appText.meta.HEADER_KEYWORD[app.request.locale] }}">
{% endblock %}
<link rel="icon" href="{{ asset('app/favicon.png') }}">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700%7cPoppins:300,400,500,600,700,800,900&display=swap"
rel="stylesheet">
{% block stylesheets %}
{{ encore_entry_link_tags('user') }}
{% endblock %}
<script>
let locale = "{{ app.request.locale }}"
</script>
</head>
<body>
{% set showSelectedPharmacy = true %}
{% if selectedPharmacy is defined %}
{% set showSelectedPharmacy = selectedPharmacy %}
{% endif %}
{{ include('elements/pagesElements/_header.html.twig') }}
{{ render(controller('App\\Controller\\App\\WidgetController::categoriesSideBar')) }}
<div class="app-content" up-main>
{% if showSelectedPharmacy %}
{{ include('elements/pharmacy/_show_pharmacy.html.twig') }}
{% endif %}
<div data-unpoly-product-cart></div>
{{ include('elements/_flash.html.twig') }}
{% block body %}{% endblock %}
</div>
{{ include('elements/pagesElements/footer.html.twig') }}
{% if not app.user %}
{{ include('elements/modal/_login_modal.html.twig') }}
{% endif %}
<div app-cookies></div>
{{ include('elements/_translation.html.twig') }}
{% block javascripts %}
{{ encore_entry_script_tags('user') }}
{% endblock %}
</body>
</html>