{% extends 'standard_tpl.html.twig' %}
{% block page_banner '' %}
{% block page_container %}
<section class="error-section padding">
<div class="container">
<div class="error-content text-center">
<h2>404!</h2>
<h5>Oops! Page Not Found</h5>
<p>The page you were looking for could not be found.</p>
<a href="{{ path('home_page') }}" class="default-btn">Back to Home</a>
</div>
</div>
</section>
{% endblock %}