karton/templates/error.html
Jade 42aceb2a01 Fix error codes, handle bad requests for creation
Fix that invalid UTF-8 or continuing the read mid-character crashes
server thread.
2023-03-10 08:18:11 +01:00

10 lines
235 B
HTML

{% include "header.html" %}
<br>
<h2>{{ status_code.as_u16() }}</h2>
<b>{{ status_code.canonical_reason().unwrap_or("Unknown error") }}</b>
<br>
<br>
<a href="{{ args.public_path }}/"> Go Home</a>
<br>
<br>
{% include "footer.html" %}