mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2025-12-16 07:30:13 +01:00
25 lines
702 B
HTML
25 lines
702 B
HTML
{% extends "base.html" %}
|
|
{% from 'partials/_buttons.html' import button %}
|
|
{% from 'partials/_panels.html' import simple_panel %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
{{ simple_panel(
|
|
title='Page Not Found',
|
|
content='<p>The page you requested could not be found.</p>
|
|
<p class="muted">Request ID: <code>' ~ (request_id or request.state.request_id) ~ '</code></p>',
|
|
variant='bordered',
|
|
padding='lg'
|
|
) }}
|
|
|
|
<div style="margin-top: 1rem;">
|
|
{{ button('Go Home', variant='primary', href='/') }}
|
|
</div>
|
|
|
|
<details style="margin-top: 1rem;">
|
|
<summary>Details</summary>
|
|
<pre>Status: {{ status }}
|
|
Path: {{ request.url.path }}</pre>
|
|
</details>
|
|
</section>
|
|
{% endblock %}
|