2025-04-25 02:47:48 +01:00
|
|
|
|
{% extends "_layout.html.j2" %}
|
|
|
|
|
|
|
2026-03-03 13:20:16 -05:00
|
|
|
|
{%- block head -%}
|
2026-04-27 16:47:08 -04:00
|
|
|
|
<link rel="stylesheet" href="{{ crate::ROUTE_PREFIX }}/resources/error.css">
|
2026-03-03 13:20:16 -05:00
|
|
|
|
{%- endblock -%}
|
|
|
|
|
|
|
2025-04-25 02:47:48 +01:00
|
|
|
|
{%- block title -%}
|
2026-03-03 13:20:16 -05:00
|
|
|
|
🐈 Request Error
|
2025-04-25 02:47:48 +01:00
|
|
|
|
{%- endblock -%}
|
|
|
|
|
|
|
|
|
|
|
|
{%- block content -%}
|
2026-04-27 16:47:08 -04:00
|
|
|
|
<div class="error-body">
|
|
|
|
|
|
<pre class="k10y" aria-hidden>
|
|
|
|
|
|
/> フ
|
|
|
|
|
|
| _ _|
|
|
|
|
|
|
/` ミ_xノ
|
|
|
|
|
|
/ |
|
|
|
|
|
|
/ ヽ ノ
|
|
|
|
|
|
│ | | |
|
|
|
|
|
|
/ ̄| | | |
|
|
|
|
|
|
| ( ̄ヽ__ヽ_)__)
|
|
|
|
|
|
\二つ
|
|
|
|
|
|
</pre>
|
|
|
|
|
|
<div class="panel middle">
|
|
|
|
|
|
<h1>
|
|
|
|
|
|
{% if status == StatusCode::NOT_FOUND %}
|
|
|
|
|
|
Not found
|
|
|
|
|
|
{% else if status == StatusCode::INTERNAL_SERVER_ERROR %}
|
|
|
|
|
|
Internal server error
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
Bad request
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
</h1>
|
2025-04-25 02:47:48 +01:00
|
|
|
|
|
2026-04-27 16:47:08 -04:00
|
|
|
|
{% if status == StatusCode::INTERNAL_SERVER_ERROR %}
|
|
|
|
|
|
<p>Please <a href="https://forgejo.ellis.link/continuwuation/continuwuity/issues/new">submit a bug report</a> 🥺</p>
|
|
|
|
|
|
{% endif %}
|
2026-03-18 13:43:34 -04:00
|
|
|
|
|
2026-04-27 16:47:08 -04:00
|
|
|
|
<pre style="white-space: pre-wrap"><code>{{ error }}</code></pre>
|
|
|
|
|
|
</div>
|
2026-03-03 13:20:16 -05:00
|
|
|
|
</div>
|
2025-04-25 02:47:48 +01:00
|
|
|
|
|
|
|
|
|
|
{%- endblock -%}
|