templates/Exceptions/404.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% set side_nav = '404' %}
  3. {% block title %}{% endblock %}
  4. {% block body %}
  5. <!-- Main Wrapper Start -->
  6. <section class="contact-section">
  7.     <div class="auto-container">
  8.         
  9.         {# Confirmation Box (Initially Hidden) #}
  10.         <div class="col-lg-6 col-md-12 col-sm-12" style="display:none;" id="confirmationBox">
  11.             <div class="message-box with-icon success">
  12.                 <div class="icon-box"><span class="icon fa fa-check"></span></div>
  13.                 <h4>Confirmation Box</h4>
  14.                 <p>Vestibulum sodales pellentesque nibh quis</p>
  15.                 <button class="close-btn" onclick="document.getElementById('confirmationBox').style.display='none';"><span class="fa fa-times"></span></button>
  16.             </div>
  17.         </div>
  18.         <div class="sec-title text-center">
  19.             <div class="divider"><img src="images/icons/divider_1.png" alt=""></div>
  20.             <h2>OPPS!</h2>
  21.             <div class="text">Cette page n'est pas disponible. <a href="{{path('home')}}">Revenir à la page d'accueil</a></div>
  22.         </div>
  23.     </div>
  24. </section>
  25. <!-- Main Wrapper End -->
  26. <!-- scroll to top -->
  27. <div class="scroll-top not-visible">
  28.     <i class="fa fa-angle-double-up"></i>
  29. </div>
  30. <!-- /End Scroll to Top -->
  31. {% endblock %}