mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
42 lines
1014 B
Django/Jinja
42 lines
1014 B
Django/Jinja
{% extends "_layout.html.j2" %}
|
||
|
||
{%- block head -%}
|
||
<link rel="stylesheet" href="/_continuwuity/resources/error.css">
|
||
{%- endblock -%}
|
||
|
||
{%- block title -%}
|
||
🐈 Request Error
|
||
{%- endblock -%}
|
||
|
||
{%- block content -%}
|
||
<pre class="k10y" aria-hidden>
|
||
/> フ
|
||
| _ _|
|
||
/` ミ_xノ
|
||
/ |
|
||
/ ヽ ノ
|
||
│ | | |
|
||
/ ̄| | | |
|
||
| ( ̄ヽ__ヽ_)__)
|
||
\二つ
|
||
</pre>
|
||
<div class="panel">
|
||
<h1>
|
||
{% if status == StatusCode::NOT_FOUND %}
|
||
Not found
|
||
{% else if status == StatusCode::INTERNAL_SERVER_ERROR %}
|
||
Internal server error
|
||
{% else %}
|
||
Bad request
|
||
{% endif %}
|
||
</h1>
|
||
|
||
{% 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 %}
|
||
|
||
<pre><code>{{ error }}</code></pre>
|
||
</div>
|
||
|
||
{%- endblock -%}
|