<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-control" content="public">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
<link rel="stylesheet" href="{{ asset('assets/cache/css_01_home.min.css') }}"/>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
{% block header %}
{% if app.request.attributes.get('_route') != 'index' %}
{% include 'includes/header.html.twig' %}
{% endif %}
{% endblock %}
{% block body %}
{% endblock %}
{% block footer %}
{% include 'includes/footer.html.twig' %}
{% endblock %}
<script src={{ asset('assets/cache/index.js') }}></script>
</body>
</html>