]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/error.html
Introduce autotools
[ipfire.org.git] / src / templates / error.html
CommitLineData
940227cb 1{% extends "base-1.html" %}
81675874 2
3{% block title %}{{ _("Error") }} {{ code }}{% end block %}
4
60b0917c 5{% block container %}
7e8d8319
SH
6<div class="container">
7 <section class="features-content col-12">
8 <h2 class="display-2 text-center">{{ code }} - {{ message }}</h2>
9
7109506b 10 <div class="row mb-6">
7e8d8319 11 <div class="col-md-8 offset-md-2">
e52b45b6
MT
12 <p class="lead">
13 {{ _("Unfortunately, an unexpected error has occurred during page load.") }}
14 </p>
15 <p>
16 If this is the first occurrence of the error, please wait a little bit
17 and try again. If the error occurs anyway the webmaster would be happy
18 to get a notification about this.
19 </p>
60024cc8 20 </div>
99dd2029 21 </div>
60b0917c 22
60b0917c
MT
23 {% block explanation %}{% end block %}
24
25 {% if exception %}
26 <div class="row">
7e8d8319 27 <div class="col-md-8 offset-md-2">
60b0917c
MT
28 <pre>{{ exception }}</pre>
29 </div>
30 </div>
31 {% end %}
32 </section>
7e8d8319 33</div>
81675874 34{% end block %}