templates/front/base-half.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         {% if not app.request.cookies.get('politicly-production-access') and app.request.get('_route') != 'coming_soon' %}
  5.         <script>
  6.             window.location.replace("/coming-soon");
  7.         </script>
  8.         {% endif %}
  9.         <meta charset="UTF-8">
  10.         <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, shrink-to-fit=no">
  11.         <link rel="icon" type="image/x-icon" href="/images/content/favicon.png">
  12.         <meta name="robots" content="noindex">
  13.         <title>
  14.             {% block title %}{% endblock %}
  15.             - Politicly</title>
  16.         {#
  17.         <link rel="stylesheet" href="/icons-prinipales/style.css">
  18.         <link rel="stylesheet" href="/icons-prinipales-2/style.css">
  19.         #}
  20.         <link rel="stylesheet" href="/custom-icons/style.css">
  21.         <link rel="stylesheet" href="/icons-comparateur/style.css">
  22.         <link rel="stylesheet" href="/icons-humeurs/style.css">
  23.         <link rel="stylesheet" href="/icons-actions/style.css">
  24.         {{ encore_entry_link_tags('app') }}
  25.         <link rel="stylesheet" href="/nice-select/css/nice-select.css"> {% block stylesheets %}{% endblock %}
  26.         </head>
  27.         <body {% if menu is defined and menu == 'welcome' %} class="welcome" {% endif %}>
  28.             {% include "front/_partials/header.html.twig" %}
  29.             {% block body %}{% endblock %}
  30.             {% include "front/_partials/footer.html.twig" %}
  31.             {% include "front/_partials/notyf.html.twig" %}
  32.             <div class="modal fade" id="loginError" tabindex="-1" role="dialog" aria-labelledby="loginError" aria-hidden="true" data-backdrop="static" data-keyboard="false">
  33.                 <div class="modal-dialog modal-dialog-centered" role="document">
  34.                     <div class="modal-content">
  35.                         <div class="modal-header">
  36.                             <h5 class="modal-title">Erreur de connexion</h5>
  37.                             <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  38.                                 <i class="custom-icon fermeture"></i>
  39.                             </button>
  40.                         </div>
  41.                         <div class="modal-body pt-0">
  42.                             <p class="text-center" id="message-login-fail">
  43.                                 Impossible de se connecter, l'email ou le mot de passe que vous avez fourni est incorrecte.
  44.                             </p>
  45.                             <p id="contact" class="d-flex justify-content-center mt-3"></p>
  46.                         </div>
  47.                     </div>
  48.                 </div>
  49.             </div>
  50.             {{ encore_entry_script_tags('app') }}
  51.             {% block javascripts %}{% endblock %}
  52.             <script src="/nice-select/js/jquery.nice-select.min.js"></script>
  53.             <script>
  54.                 $(".select-custom").niceSelect();
  55.             </script>
  56.             
  57.         </body>
  58.     </html>