<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{# Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX #}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
<div id="body-container" class="{% block body_container_classes %}grid-container{% endblock %}">
<div class="cell small-12">
{% if app.user %}
<p class="text-white ml-[11.5rem] text-lg tracking-ultrawide font-bold">{{ app.user.company.name }}'s</p>
{% else %}
{% endif %}
</div>
<div class="cell small-2 medium-3 large-1 text-right {% if app.user %}mt-11{% else %}mt-15{% endif %}">
{% if app.user %}
<p class="status-bar">{{ app.user.useridentifier }} - Logged in</p>
{% endif %}
</div>
{% if is_granted('ROLE_USER') %}
<div class="cell small-12 main-menu-holder">
{{ knp_menu_render('main', {'template' : 'menu/custom_menu.html.twig'}) }}
</div>
{% endif %}
<div class="grid-x grid-margin-x">
{% block body %}{% endblock %}
</div>
{# <div class="grid-y" style="height: 500px;">
<div class="cell auto">
</div>
</div> #}
</div>
</body>
</html>