templates/errors/error404.html.twig line 1

Open in your IDE?
  1. {% extends "@Public/common/general-layout.html.twig" %}
  2. {% set isAuthenticated = is_granted("IS_AUTHENTICATED_REMEMBERED") %}
  3. {% block body_class %}{{ parent() }} exception-page {% endblock body_class %}
  4. {% block content %}
  5.     {% include "@Public/errors/partials/_error_title.html.twig" %}
  6.     <section class="content">
  7.         <div class="box box-default">
  8.             <div class="box-body">
  9.                 <div class="row">
  10.                     <div class="col col-xs-12 col-md-9">
  11.                         <p>This page doesn't exist.</p>
  12.                         
  13.                        
  14.                     </div>
  15.                     {% if not isAuthenticated %}
  16.                         {{ include('@Public/errors/partials/_registration_block.html.twig') }}
  17.                     {% endif %}
  18.                 </div>
  19.             </div>
  20.         </div>
  21.     </section>
  22. {% endblock %}
  23. {% block footer_scripts %}
  24.     {{ encore_entry_script_tags('errors.404') }}
  25. {% endblock footer_scripts %}