templates/base.html.twig line 1
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% 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>">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
{% if app.session.get('curTheme') is not defined or app.session.get('curTheme') == null %}
<link rel="stylesheet" href="{{ asset('css/themes/cosmo-bootstrap.min.css') }}">
{% else %}
<link rel="stylesheet" href="{{ asset('css/themes/'~app.session.get('curTheme')) }}">
{% endif %}
<link rel="stylesheet" href="{{ asset('css/jquery/jquery-ui.min.css') }}">
<link rel="stylesheet" href="{{ asset('css/jquery/jquery.signature.css') }}">
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
<link rel="stylesheet" href="{{ asset('css/customaddons/right-click-menu.css') }}">
<link rel="stylesheet" href="{{ asset('css/customaddons/notifyer.css') }}">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
<script src="{{ asset('js/jquery/jquery-3.6.3.min.js') }}" ></script>
<script src="{{ asset('js/jquery/jquery-ui.min.js') }}" ></script>
<script src="{{ asset('js/jquery/jquery.signature.min.js') }}"></script>
<script src="{{ asset('js/addons/bootstrap.bundle.min.js') }}"></script>
<script src="{{ asset('js/addons/chart.min.js')}}"></script>
<script src="{{ asset('js/addons/add-collection-widget.js')}}"></script>
<script src="{{ asset('js/customaddons/inputFormat.js') }}" ></script>
<script src="{{ asset('js/customaddons/common.js') }}"></script>
<script src="{{ asset('js/customaddons/right-click-menu.js') }}"></script>
<script src="{{ asset('js/customaddons/notifyer.js') }}"></script>
<script src="{{ asset('js/customaddons/pagination.js') }}"></script>
<script src="{{ asset('js/autocomplete/autocompleteCore.js') }}"></script>
<script src="{{ asset('js/autocomplete/autocompleteAdresse.js') }}"></script>
<script src="{{ asset('js/autocomplete/autocompletePays.js') }}"></script>
<script src="{{ asset('js/autocomplete/autocompleteNaf.js') }}"></script>
<script src="{{ asset('js/autocomplete/autocompleteOrganisation.js') }}"></script>
<script src="{{ asset('js/autocomplete/autocompleteUtilisateur.js') }}"></script>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
{% if withNavBar|default(true) %}
{{ include('_partials/_navbar.html.twig') }}
{% endif %}
{% include "_partials/_flash.html.twig" %}
{% block body %}{% endblock %}
</body>
</html>