{% extends 'custom-base.html.twig' %}
{% block body %}
<!-- CONTAINER OPEN -->
<div class="container text-center">
<div class="error-template">
<h2 class="text-white mb-2">404<span class="fs-20">error</span></h2>
<h5 class="error-details text-white">
Oops! Some error has occured, Requested page not found!
</h5>
<div class="text-center">
<a class="btn btn-primary mt-5 mb-5" href="{{ absolute_url(path('app_home')) }}"> <i class="fa fa-long-arrow-left"></i> Back to Home </a>
</div>
</div>
</div>
<!-- CONTAINER CLOSED -->
{% endblock %}