rDrama/files/templates/errors/error.html

20 lines
592 B
HTML

{% extends "default.html" %}
{% block title %}
<title>{{code}} {{error}}</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">
<h1>{{code}}</h1>
<h5>{{error}}</h5>
<p class="text-muted mb-5">{{description}}</p>
{% if details -%}
<blockquote class="error-details mb-5 py-2">{{details|safe}}</blockquote>
{%- endif %}
<div><a href="/" class="btn btn-primary">Go to frontpage</a></div>
</div>
</div>
</div>
{% endblock %}