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.                         {% if not isAuthenticated %}
  14.                         <p>And since you're not here, how about signing up to donate or get funded!</p>
  15.                         {% endif %}
  16.                     </div>
  17.                     {% if not isAuthenticated %}
  18.                         {{ include('@Public/errors/partials/_registration_block.html.twig') }}
  19.                     {% endif %}
  20.                 </div>
  21.             </div>
  22.         </div>
  23.     </section>
  24. {% endblock %}
  25. {% block footer_scripts %}
  26.     {{ encore_entry_script_tags('errors.404') }}
  27. {% endblock footer_scripts %}