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

Open in your IDE?
  1. {% extends "site_body.html.twig" %}
  2. {% block page_container %}
  3.       <section class="section box-404">
  4.         <div class="container">
  5.           <div class="row">
  6.             <div class="col-lg-2"></div>
  7.             <div class="col-lg-10">
  8.               <div class="row align-items-center">
  9.                 <div class="col-md-5 col-sm-12 mb-30 text-center text-md-start"><img src="{{ asset('themes/castine/assets/imgs/page/404/404.png') }}" alt="iori"></div>
  10.                 <div class="col-md-7 col-sm-12 text-center text-md-start">
  11.                   <h1 class="color-brand-1 font-84 mb-10">404</h1>
  12.                   <h3 class="color-brand-1 mb-25">Oops, nothing to see here</h3>
  13.                   <p class="font-md color-grey-500">Unfortunately, we couldn't find what you were looking for or the page no longer exists.</p>
  14.                   <div class="mt-50"><a class="btn btn-default color-grey-900 pl-0" href="{{ path('home_page') }}">
  15.                       <svg class="w-6 h-6 icon-16 mr-5" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
  16.                         <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"></path>
  17.                       </svg>Back to Homepage</a></div>
  18.                 </div>
  19.               </div>
  20.             </div>
  21.           </div>
  22.         </div>
  23.       </section>
  24. {% endblock %}