templates/bundles/BoabCmsBundle/Exception/exception_404.html.twig line 1

Open in your IDE?
  1. {% extends 'standard_tpl.html.twig'  %}
  2. {% block page_banner '' %}
  3. {% block page_container %}
  4. <section class="error-section padding">
  5.     <div class="container">
  6.         <div class="error-content text-center">
  7.             <h2>404!</h2>
  8.             <h5>Oops! Page Not Found</h5>
  9.             <p>The page you were looking for could not be found.</p>
  10.             <a href="{{ path('home_page') }}" class="default-btn">Back to Home</a>
  11.         </div>
  12.     </div>
  13. </section>
  14. {% endblock %}