{% extends 'base.html.twig' %}
{% set body_class = 'bg-light' %}
{% block title %}{{ 'not-found'|trans }}{% endblock %}
{% block body %}
<nav class="navbar navbar-expand-lg navbar-light mb-5">
<div class="container-fluid justify-content-end">
</div>
</nav>
<section class="section section--sign">
<div class="container">
<div class="row">
<div class="col-xl-10 offset-xl-1">
<div class="row">
<div class="col-md-8 offset-md-2 sm-wider">
<h1>{{ 'not-found'|trans }}</h1>
<div class="well text-center">
<h2>{{ 'not-found.text'|trans }}</h2>
<hr class="mt-5 mb-5">
<a class="btn btn-outline-primary" href="{{ url('security_home', { _locale: lang|default('en') }) }}">{{ 'back-to-homepage'|trans }}</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
{% endblock %}