<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
{% block SEO %}
<title>{% block window_title %}{{ appName }}{% endblock %}</title>
<meta content="PROJECT_DESCRIPTION" name="description">
<meta content="PROJECT_KEYWORDS" name="keywords">
{% endblock SEO %}
<!-- Favicons -->
{# <link href="{{ asset('build/images/favicon.74c079e7.png') }}" rel="icon">#}
{# <link href="{{ asset('build/images/apple-touch-icon.d2525de9.png') }}" rel="apple-touch-icon">#}
{% block stylesheets %}
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i,900"
rel="stylesheet">
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
<header id="header">
{% include 'header.html.twig' %}
</header>
<div class="container">
{% include 'flash_messages.html.twig' %}
{% block body %}{% endblock %}
</div>
<footer id="footer">
{% include 'footer.html.twig' %}
</footer>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>