templates\404formation.twig line 1

  1. {% extends "base.html.twig" %}
  2. {% block title %}
  3.     Oups
  4. {% endblock %}
  5. {% block body %}
  6.     <div class="h-75 d-flex flex-column align-items-center justify-content-center text-center m-4">
  7.         <div style="font-size:2rem; line-height:90%; margin-bottom: 30px;">Erreur 404</div>
  8.         {% if "formations_partenaires" in app.request.uri %}
  9.             <div style="font-size:3rem; line-height:90%; margin-bottom: 40px;">Désolé cette formation partenaire n'a pas été trouvée.</div>
  10.             <a href="/formations_partenaires">
  11.                 <button type="button" class="btn btn-lg" style="background-color: #ce3e17; color: white;">Voir le catalogue des formations partenaires</button>        
  12.             </a>
  13.         {% else %}
  14.             <div style="font-size:3rem; line-height:90%; margin-bottom: 40px;">Désolé cette formation n'a pas été trouvée.</div>
  15.             <a href="/formations">
  16.                 <button type="button" class="btn btn-lg btn-success">Voir le catalogue des formations</button>        
  17.             </a>
  18.         {% endif %}
  19.     </div>
  20. {% endblock %}