rDrama/files/templates/errors/error.html

27 lines
692 B
HTML
Raw Normal View History

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">
{% if img -%}
2022-10-11 10:22:28 +00:00
<img alt=":#{{img}}:" loading="lazy" src="/e/{{img}}.webp">
{%- endif %}
2022-10-11 10:22:28 +00:00
<pre></pre>
<h1 class="h5">{{code}} {{title}}</h1>
<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 %}