<!DOCTYPE html>
<html>
{% block sylius_head %}
<head>
{% block stylesheets %}
{# 'app' must match the first argument to addEntry() in webpack.config.js #}
{{ encore_entry_link_tags('app') }}
{{ encore_entry_link_tags('search-bar') }}
<!-- Renders a link tag (if your module requires any CSS)
<link rel="stylesheet" href="/build/app.css"> -->
<link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" type="text/css">
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v5.3.0/build/ol.js"></script>
{% endblock %}
<meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
{% block meta %}
{% if seo is defined and seo is not null %}
<title>{{ seo.title }}</title>
<meta property="og:title" content="{{ seo.title }}">
<meta property="og:description" content="{{ seo.description }}">
<meta property="og:type" content="{{ seo.type }}">
{% else %}
<title>TCA</title>
<meta content="TCA" property="og:title">
<meta content="TCA" property="og:description">
<meta content="website" property="og:type">
<link rel="shortcut icon" type="image/x-icon" href="{{ asset("build/images/favicon.ico") }}"/>
{% endif %}
{% block ga_js %}
{{ encore_entry_script_tags('ga') }}
<script>
ga('create', "{{ getAnalyticsIdentifier() }}", 'auto');
</script>
{{ encore_entry_script_tags('ga-events-page-view') }}
{% endblock %}
{% block ga_events_js %}{% endblock %}
<meta content="TCA" property="og:site_name"/>
{% endblock meta %}
</head>
{% endblock %}
<body class="body">
{% block sylius_page_header %}
<div id="header" class="bg-white fixed-top col-sm-12 px-0 mx-0 d-flex flex-column header-height border-b">
{% include '@App/app/base/header/header.html.twig' %}
</div>
{% endblock %}
{% block sylius_page_container %}
<div id="page" class="content-wrapper">
{% block page_container %}{% endblock %}
</div>
{% endblock %}
{% block sylius_page_footer %}
<div class="bg-blue">
{% include '@App/app/base/footer/footer.html.twig' %}
</div>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>