2022-10-11 10:22:28 +00:00
|
|
|
{% extends "default.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<title>{{code}} {{title}}</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block pagetype %}error-{{code}}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-10 col-md-5">
|
|
|
|
<div class="text-center px-3 my-8">
|
2022-10-11 10:43:47 +00:00
|
|
|
{% if img -%}
|
2022-10-11 10:22:28 +00:00
|
|
|
<img alt=":#{{img}}:" loading="lazy" src="/e/{{img}}.webp">
|
2022-10-11 10:43:47 +00:00
|
|
|
{%- endif %}
|
2022-10-11 10:22:28 +00:00
|
|
|
<pre></pre>
|
|
|
|
<h1 class="h5">{{code}} {{title}}</h1>
|
2022-10-11 10:43:47 +00:00
|
|
|
<p class="text-muted mb-5">{{msg|safe}}</p>
|
|
|
|
{% if details -%}
|
|
|
|
<blockquote class="error-details">{{details|safe}}</blockquote>
|
|
|
|
{%- endif %}
|
|
|
|
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
|
2022-10-11 10:22:28 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|