templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>{% block title %}Welcome!{% endblock %}</title>
  7.     <link rel="icon"
  8.           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>">
  9.     {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  10.     {% block stylesheets %}
  11.         {{ encore_entry_link_tags('app') }}
  12.     {% endblock %}
  13.     {% block javascripts %}
  14.         {{ encore_entry_script_tags('app') }}
  15.     {% endblock %}
  16.     {% block head %}
  17.     {% endblock %}
  18. </head>
  19. <body>
  20. <div class="p-2" style="position: fixed; bottom:0 ; left: 0; z-index: 1000"  >
  21.     <a href="{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all)|merge({ _locale: 'es' })) }}" style="text-decoration: none">
  22.         <img src="{{ asset('images/flags/Flag_of_Spain.svg') }}" alt="" style="width: 30px; aspect-ratio: 16/9;">
  23.     </a>
  24.     <a href="{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all)|merge({ _locale: 'pt' })) }}" style="text-decoration: none">
  25.         <img src="{{ asset('images/flags/Flag_of_Portugal.svg') }}" alt="" style="width: 30px; aspect-ratio: 16/9;">
  26.     </a>
  27.     <a href="{{ path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')|merge(app.request.query.all)|merge({ _locale: 'fr' })) }}" style="text-decoration: none">
  28.         <img src="{{ asset('images/flags/Flag_of_France.svg') }}" alt="" style="width: 30px; aspect-ratio: 16/9;">
  29.     </a>
  30. </div>
  31. <nav class="navbar navbar-expand-lg navbar-light bg-light ">
  32.     <div class="container-fluid justify-content-center headercontent ">
  33.         <a class="navbar-brand" href="{{ path('home') }}">
  34.             <img src="{{ asset('images/Logo-PAJ-Color.svg') }}" alt="" width="50"
  35.                  height="50" class="d-inline-block ">
  36.         </a>
  37.         <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
  38.                 aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
  39.             <span class="navbar-toggler-icon"></span>
  40.         </button>
  41.         <div class="collapse navbar-collapse  " id="navbarSupportedContent">
  42.             <ul class="navbar-nav me-auto mb-2 mb-lg-0 mx-auto">
  43.                 <li class="nav-item">
  44.                     <a class="nav-link active" aria-current="page" href="{{ path('home') }}">Accueil</a>
  45.                 </li>
  46.                 <li class="nav-item">
  47.                     <a class="nav-link  active" href="{{ path('app-epyp-index') }}">Projet EPYP</a>
  48.                 </li>
  49.                 <li class="nav-item">
  50.                     <a class="nav-link  active" href="{{ path('app-questionnaire-index') }}">Questionnaire</a>
  51.                 </li>
  52.             </ul>
  53.         </div>
  54.         <div class="navbar-right" href="{{ path('home') }}">
  55.             <div style="width: 50px; height: 50px;" class="d-none d-md-inline-block">
  56.             </div>
  57.         </div>
  58.     </div>
  59. </nav>
  60. {% block body %}{% endblock %}
  61. <div class=" w-100 h-auto text-center ">
  62.     <a href="https://www.engagees-determinees.org/" target="_blank">
  63.         <img src="{{ asset('images/Logo-PAJ-Color.svg') }}" alt="" class="mt-3 mb-3" style="width: 75px; height: 75px;">
  64.     </a>
  65. </div>
  66. <div class="w-100 text-center">
  67.     <a href="MAILTO:coordination.paj@gmail.com" class=" mb-4 fs-6 fw-bold maincolor text-decoration-none">
  68.         coordination.paj@gmail.com
  69.     </a>
  70. </div>
  71. <div class="w-75 mx-auto mb-4 mt-4" style="background-color: #ddddde; height: 2px;">
  72. </div>
  73. <table style="height: 50px; width: 100%; padding-top: 50px;">
  74.     <tbody>
  75.     <tr>
  76.         <td class="fs-6  text-center w-100">
  77.             Soutenu par :
  78.         </td>
  79.     </tr>
  80.     </tbody>
  81. </table>
  82. <div class="customwrapper">
  83.     <div style="width: 130px; height:130px;">
  84.         <img src="{{ asset('images/logos/04 CoordinationSud-Logotype-RVB_logo-officiel.png') }}" alt="Coordination Sud"
  85.              style="width: 100%">
  86.     </div>
  87. </div>
  88. <table style="height: 50px; width: 100%; padding-top: 50px;">
  89.     <tbody>
  90.     <tr>
  91.         <td class="fs-6  text-center w-100">
  92.             Financé par :
  93.         </td>
  94.     </tr>
  95.     </tbody>
  96. </table>
  97. <div class="customwrapper" style="">
  98.     <div style="width: 130px; height: 65px;position: relative" class="m-2 ">
  99.         <img src="{{ asset('images/logos/02 AFD Logo.jpg') }}" alt="" style="width: 100%"
  100.              class="position-absolute top-50 start-50 translate-middle">
  101.     </div>
  102.     <div style="width: 130px; height: 65px; float: left;position: relative" class="m-2">
  103.         <img src="{{ asset('images/logos/07 Erasmus Logo.jpg') }}" alt="" style="width: 100%"
  104.              class="position-absolute top-50 start-50 translate-middle">
  105.     </div>
  106. </div>
  107. <table style="height: 50px; width: 100%; padding-top: 50px;">
  108.     <tbody>
  109.     <tr>
  110.         <td class="fs-6  text-center w-100">
  111.             <a href="{{ path('mentions-legales') }}" class="maincolor text-decoration-none fw-semibold">
  112.                 Mentions légales
  113.             </a>
  114.         </td>
  115.     </tr>
  116.     </tbody>
  117. </table>
  118. </body>
  119. </html>