<!DOCTYPE html>
<html lang="fr">
{# multilangue <html lang="{{ app.request.locale }}"> #}
<head>
{## ATTENTION NO INDEX NO FOLLOW #}
{% if app.environment == 'prod' %}
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-V0HQ933GM6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-V0HQ933GM6');
</script>
{% endif %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}Cover Design {% endblock %}</title>
{% block description %}{% endblock %}
{## ATTENTION NO INDEX NO FOLLOW #}
{% if app.environment != 'prod' %}
<meta name="robots" content="noindex, nofollow">
{% endif %}
{# ICON #}
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('build/images/icons/site/apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('build/images/icons/site/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('build/images/icons/site/favicon-16x16.png') }}">
<link rel="manifest" href="{{ asset('build/images/icons/site/site.webmanifest') }}">
<link rel="mask-icon" href="{{ asset('build/images/icons/site/safari-pinned-tab.svg') }}" color="#5bbad5">
<link rel="shortcut icon" href="{{ asset('build/images/icons/site/favicon.ico') }}">
<meta name="msapplication-TileColor" content="#d0d0d0">
<meta name="msapplication-config" content="{{ asset('build/images/icons/site/browserconfig.xml') }}">
<meta name="theme-color" content="#ffffff">
{% block stylesheets %}
{# 'app' must match the first argument to addEntry() in webpack.config.js #}
{{ encore_entry_link_tags('app') }}
<!-- Renders a link tag (if your module requires any CSS)
<link rel="stylesheet" href="/build/app.css"> -->
{% endblock %}
</head>
<body>
{% include 'partials/header.html.twig' %}
{# ALERT MESSAGE #}
{% for label, messages in app.flashes %}
<div class="hideMe pointer fixed top-90 right-20" style="z-index: 99;">
<div class="alert alert--{{ label }} --big popup-alert pr-30">
{% for message in messages %}
<p class="pa-10"><i class="icon icon-comment typo-150 ml-10"></i> {{ message|raw }}</p>
{% endfor %}
</div>
<div class="absolute top-10" style="right: 5px;">
<span class="typo-white"><i class="icon-remove"></i></span>
</div>
</div>
{% endfor %}
{% if not is_mobile %}
<div class="page_wrapper_column">
{% endif %}
{% block body %}{% endblock %}
{% include 'partials/footer.html.twig' %}
{% if not is_mobile %}
</div>
{% endif %}
{% include 'partials/pop-up.html.twig' %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<!-- Renders app.js & a webpack runtime.js file
<script src="/build/runtime.js"></script>
<script src="/build/app.js"></script> -->
{% endblock %}
</body>
</html>