karton/templates/error.html

11 lines
235 B
HTML
Raw Normal View History

{% 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" %}