templates/no-aside-base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport"
  6.           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.     <title>{% block title %}Portail NVL{% endblock %}</title>
  9.     {# Run `composer require symfony/webpack-encore-bundle`
  10.            and uncomment the following Encore helpers to start using Symfony UX #}
  11.     <link rel="stylesheet" href="{{ asset('assets/css/third-party.css') }}?v={{ commitHash() }}">
  12.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}?v={{ commitHash() }}">
  13.     <link rel="stylesheet" href="{{ asset('assets/css/no-aside.css') }}?v={{ commitHash() }}">
  14.     <link rel="stylesheet" href="{{ asset('assets/css/modules/_select2.min.css') }}?v={{ commitHash() }}">
  15.     <link rel="stylesheet" href="{{ asset('assets/css/modules/_animate.min.css') }}">
  16.     {% include 'include/favicons.html.twig' %}
  17.     {% block stylesheets %}
  18.         {# {{ encore_entry_link_tags('app') }} #}
  19.     {% endblock %}
  20. </head>
  21. <body>
  22. {% include 'include/helper-responsive.html.twig' %}
  23. <div id="content">
  24.     {% include 'include/no-aside-header.html.twig' with {'bodytitle': block('bodytitle')} %}
  25.     <main class="container-fluid">
  26.         {% include 'include/flash-messages.html.twig' %}
  27.         <div class="d-none">
  28.             <div class="d-sm-flex align-items-center justify-content-between mb-4">
  29.                 <h1 class="h3 mb-0 text-gray-800">{% block bodytitle %}{% endblock %}</h1>
  30.             </div>
  31.         </div>
  32.         {#                {% block breadcrumb %} #}
  33.         {#                    {% if breadcrumb is defined %} #}
  34.         {#                        {% include 'include/breadcrumb.html.twig' %} #}
  35.         {#                    {% endif %} #}
  36.         {#                {% endblock %} #}
  37.         <div class="row">
  38.             <div class="col">
  39.                 {% block body %}{% endblock %}
  40.             </div>
  41.         </div>
  42.         {% include 'include/ajax_loader.html.twig' %}
  43.     </main>
  44. </div>
  45. {% include 'include/footer.html.twig' %}
  46. <script src="{{ asset('assets/js/third-party.min.js') }}?v={{ commitHash() }}"></script>
  47. <script src="{{ asset('assets/js/flatpikr.min.js') }}?v={{ commitHash() }}"></script>
  48. <script src="{{ asset('assets/js/modules/_select2.min.js') }}?v={{ commitHash() }}"></script>
  49. <script src="{{ asset('bundles/oznvlportaldisplayer/js/datepicker.js') }}?v={{ commitHash() }}"></script>
  50. <script src="{{ asset('bundles/oznvlportaldisplayer/js/displayer.js') }}?v={{ commitHash() }}"></script>
  51. <script src="{{ asset('bundles/fosjsrouting/js/router.min.js') }}"></script>
  52. <script src="{{ path('fos_js_routing_js', { callback: 'fos.Router.setData' }) }}"></script>
  53. <script src="{{ asset('bundles/oznvlportaldisplayer/js/force-filter.js') }}?v={{ commitHash() }}"></script>
  54. <script src="{{ asset('assets/js/main.js') }}?v={{ commitHash() }}"></script>
  55. <script src="{{ asset('assets/js/ticket/modalCreateTicketAjax.js') }}"></script>
  56. {% block javascripts %}
  57.     {# {{ encore_entry_script_tags('app') }} #}
  58. {% endblock %}
  59. </body>
  60. </html>