<!DOCTYPE html>
<html lang="de">
<head>
<title>{% block title %}{% endblock %}</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{% block additional_header_data %}{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
<link rel="stylesheet" href="{{ asset('css/normalize.css') }}"/>
<link rel="stylesheet" href="{{ asset('css/grid.css') }}"/>
<link rel="stylesheet" href="{{ asset('css/font-awesome.min.css') }}"/>
<link rel="stylesheet" href="{{ asset('css/style_dark.css') }}"/>
<base href="{{ base }}">
{% if app.environment == 'dev' %}
<link rel="stylesheet" href="{{ asset('css/dev.css') }}"/>
{% endif %}
{% block stylesheets %}{% endblock %}
</head>
<body>
<div class="wrapper buchung">
<header id="header" class="sticky">
<div class="row">
<div id="logo" class="col-3">
<a href="{{ path('home') }}"><img src="https://www.redato.de/web/web0039/res/templates/images/logo.svg" alt="Logo" /></a>
</div>
{% if not app.user %}
<div class="col-9 hide-mobile">
<a href="{{ path('register') }}" class="button" style="float: right">{{ 'customer.register'|trans }}</a>
<a href="{{ path('login') }}" class="button" style="float: right; margin-right: 10px;">{{ 'security.login'|trans }}</a>
</div>
{% endif %}
{% block customer %}{% endblock %}
</div>
</header>
<div class="main">
{% block main %}{% endblock %}
</div>
<div id="copyright">
<p>Copyright © by Gericke & Co. GmbH - Alle Rechte vorbehalten. <a href="https://www.gericke-spedition.de/impressum.html" target="_blank">Impressum</a> | <a href="https://www.gericke-spedition.de/datenschutz.html" target="_blank">Datenschutz</a></p>
</div>
</div>
{% block javascripts %}
<script src="{{ asset('js/dist/polyfill.min.js') }}"></script>
<script src="{{ asset('js/dist/axios.min.js') }}"></script>
{% if app.environment == 'dev' %}
<script src="{{ asset('js/common.js') }}"></script>
{% else %}
<script src="{{ asset('js/dist/common.min.js') }}"></script>
{% endif %}
{% endblock %}
</body>
</html>