templates/Front/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <!--[if lt IE 7]>
  3. <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
  4. <!--[if IE 7]>
  5. <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
  6. <!--[if IE 8]>
  7. <html class="no-js lt-ie9"> <![endif]-->
  8. <!--[if gt IE 8]><!-->
  9. <html class="no-js" xmlns="http://www.w3.org/1999/html">
  10. <!--<![endif]-->
  11. <head>
  12.     <meta charset="UTF-8"/>
  13.     <meta name="viewport" content="width=device-width, initial-scale=1">
  14.     <title>{% block title %}Geforp{% endblock %}</title>
  15.     <link rel="stylesheet" href="{{ asset('build/front.css') }}"/>
  16.     <!-- page styles -->
  17.     {% block stylesheets %}{% endblock %}
  18.     <!-- global scripts -->
  19.     <script src="{{ asset('build/front.js') }}"></script>
  20.     <script src="{{ asset('build/datatables.js') }}"></script>
  21.     <script type="application/javascript">
  22.         (function($) {
  23.             $(document).ready(function() {
  24.                 jQuery.cookieBar({
  25.                     'message': "Cette plateforme utilise des cookies pour vous assurer la meilleure expĂ©rience de visite possible.",
  26.                     'acceptText': "Je comprends"
  27.                 });
  28.             });
  29.         })(jQuery);
  30.     </script>
  31.     <!-- page scripts -->
  32.     {% block javascripts %}{% endblock %}
  33.     <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
  34. </head>
  35. <body class="body">
  36.     <!-- header -->
  37.     {% include 'Front/header.html.twig' %}
  38.     <!-- content -->
  39.     <div class="content">
  40.         {% block header %}{% endblock %}
  41.         {% block breadcrumbs %} {% endblock %}
  42.         <!-- flashes -->
  43.         {% block flashes %}
  44.             {% from '@MopaBootstrap/flash.html.twig' import session_flash %}
  45.             {% if app.session.flashbag.peekAll|length > 0 %}
  46.                 <div class="container flashes">
  47.                     <div class="row">
  48.                         <div class="col-sm-12">
  49.                             {{ session_flash() }}
  50.                         </div>
  51.                     </div>
  52.                 </div>
  53.             {% endif %}
  54.         {% endblock flashes %}
  55.         {% block body %}{% endblock %}
  56.     </div>
  57.     <!-- footer -->
  58.     {% include 'Front/footer.html.twig' %}
  59. </body>
  60. </html>