{% extends "@Public/common/general-layout.html.twig" %}
{% set isAuthenticated = is_granted("IS_AUTHENTICATED_REMEMBERED") %}
{% block body_class %}{{ parent() }} exception-page {% endblock body_class %}
{% block content %}
{% include "@Public/errors/partials/_error_title.html.twig" %}
<section class="content">
<div class="box box-default">
<div class="box-body">
<div class="row">
<div class="col col-xs-12 col-md-9">
<p>This page doesn't exist.</p>
</div>
{% if not isAuthenticated %}
{{ include('@Public/errors/partials/_registration_block.html.twig') }}
{% endif %}
</div>
</div>
</div>
</section>
{% endblock %}
{% block footer_scripts %}
{{ encore_entry_script_tags('errors.404') }}
{% endblock footer_scripts %}