<!DOCTYPE html>
<html class="{% block html_classes %}{% endblock %}">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
{# Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX #}
{% block favicon %}{% endblock %}
{% block stylesheets %}
{{ encore_entry_link_tags('styles', 'core', 'core') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('scripts', 'core', 'core') }}
{% endblock %}
</head>
<body class="{% block body_classes %}{% endblock %}">
{{ update_last_connected(app.user) }}
{% block header %}
{% include '@NellappSDK/Partials/component/header/header.html.twig' %}
{% endblock %}
{% block body %}
{% endblock %}
{% block footer %}{% endblock %}
{% block end_body_scripts %}{% endblock %}
</body>
</html>