<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{% block title %}Home!{% endblock %}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('front/assets/img/logo/logo.png') }}">
<!-- CSS
============================================ -->
{% block stylesheets %}
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{{ asset('front/assets/css/bootstrap.min.css') }}">
<!-- Icon Font CSS -->
<link rel="stylesheet" href="{{ asset('front/assets/css/icons.min.css') }}">
<!-- Plugins CSS -->
<link rel="stylesheet" href="{{ asset('front/assets/css/plugins.css') }}">
<!-- Main Style CSS -->
<link rel="stylesheet" href="{{ asset('front/assets/css/style.css') }}">
<!-- Modernizer JS -->
<script src="{{ asset('front/assets/js/vendor/modernizr-3.11.7.min.js') }}"></script>
{% endblock %}
</head>
<body>
{{ include('front/partials/header.html.twig') }}
{% block body %}{% endblock %}
{{ include('front/partials/footer.html.twig') }}
<!-- JS
============================================ -->
{% block javascripts %}
<!-- jQuery JS -->
<script src="{{ asset('front/assets/js/vendor/jquery-v2.2.4.min.js') }}"></script>
<!-- Popper JS -->
<script src="{{ asset('front/assets/js/popper.min.js') }}"></script>
<!-- Bootstrap JS -->
<script src="{{ asset('front/assets/js/bootstrap.min.js') }}"></script>
<!-- Plugins JS -->
<script src="{{ asset('front/assets/js/plugins.js') }}"></script>
<!-- Ajax Mail -->
<script src="{{ asset('front/assets/js/ajax-mail.js') }}"></script>
<!-- Main JS -->
<script src="{{ asset('front/assets/js/main.js') }}"></script>
{% endblock %}
</body>
</html>