{% block stylesheets %}
{{ encore_entry_link_tags('base') }}
{% endblock %}
{% if (client is defined) and (client.getEscudo() is defined) %}
{% else %}
{% endif %}
{% set route = app.request.attributes.get('_route') %}
{% set route_params = app.request.attributes.get('_route_params') %}
{% set params = route_params|merge(app.request.query.all) %}
{% block header %}
{% include 'GinsaSistemaBundle:Menus:menu.html.twig' %}
{% endblock %}
{% block body %}
{% if client!=null %}
{% if licencia==true %}
{% block contentBody %}
{% endblock %}
{% else %}
{% include 'GinsaSistemaBundle:ErroresControlados:sinLicencia.html.twig' %}
{% endif %}
{% else %}
{% include 'GinsaSistemaBundle:ErroresControlados:construccion.html.twig' %}
{% endif %}
{% endblock %}
{% include 'GinsaSistemaBundle:Loadings:loading.html.twig' %}
{% block footer %}
{% include '@GinsaSistema/Footers/footer.twig' %}
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('base') }}
{% endblock %}