{% extends 'layouts/exception_layout.html.twig' %}
{% block title %}Not Found - {{ sitename }}{% endblock %}
{% block body %}
<div class="jumbotron">
<h1><i class="fa-solid fa-xmark"></i> Not Found</h1>
{% if message is not null and message is not empty %}
<div class="alert alert-warning">{{ message }}</div>
{% endif %}
Unfortunately the requested page cannot be found on this website.<br />
If you believe this is an error, please <a href="{{ path('contact') }}">contact me</a>.
</div>
{% endblock %}