<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{site|capitalize}} Space{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
{% block stylesheets %}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('ui', null, site|lower) }}
{{ encore_entry_script_tags('consent', null, site|lower) }}
{% endblock %}
</head>
<body {% if searchEmpty is defined %}
data-search-empty="{{searchEmpty}}"
data-search-msg-icon="{{searchMsgIcon}}"
data-search-msg-title="{{searchMsgTitle}}"
data-search-msg-html="{{searchMsgHtml}}"
data-search-msg-footer="{{searchMsgFooter}}"
{% endif %} class="{#
#}{% if page is defined %}page--{{page}}{% endif %}
{#{% if app.request.get('_route') == 'signup' or app.request.get('_route') == 'signin' %}light-green{% endif %}"#}
"
{% if mainMenu[0]['css'] is defined and mainMenu[0]['css']['body_hex_color'] is defined %}
{# make a template to use with names of the vals arrays #}
{% include 'parts/_custom-el-css.html.twig' with {'css': mainMenu[0]['css'],'cssToUse':[{ 'body_hex_color':'background-color' }]} %}
{% endif %}
>
{% if app.user is not null %}
{#{% if app.user is not null and is_granted('ROLE_SUPERUSER') %}#}
{% include 'admin/_top-panel.html.twig' %}
{% endif %}
{% block body %}{% endblock %}
</body>
</html>