templates/error404/index.html.twig line 1

Open in your IDE?
  1. {% extends 'custom-base.html.twig' %}
  2. {% block body %}
  3.                 <!-- CONTAINER OPEN -->
  4.                 <div class="container text-center">
  5.                     <div class="error-template">
  6.                         <h2 class="text-white mb-2">404<span class="fs-20">error</span></h2>
  7.                         <h5 class="error-details text-white">
  8.                             Oops! Some error has occured, Requested page not found!
  9.                         </h5>
  10.                         <div class="text-center">
  11.                             <a class="btn btn-primary mt-5 mb-5" href="{{ absolute_url(path('app_home')) }}"> <i class="fa fa-long-arrow-left"></i> Back to Home </a>
  12.                         </div>
  13.                     </div>
  14.                 </div>
  15.                 <!-- CONTAINER CLOSED -->
  16. {% endblock %}