{% extends "base.html" %} {% from 'partials/_buttons.html' import button %} {% from 'partials/_panels.html' import simple_panel %} {% block content %}
{{ simple_panel( title='Page Not Found', content='

The page you requested could not be found.

Request ID: ' ~ (request_id or request.state.request_id) ~ '

', variant='bordered', padding='lg' ) }}
{{ button('Go Home', variant='primary', href='/') }}
Details
Status: {{ status }}
Path: {{ request.url.path }}
{% endblock %}