]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/error.html
Introduce autotools
[ipfire.org.git] / src / templates / error.html
1 {% extends "base-1.html" %}
2
3 {% block title %}{{ _("Error") }} {{ code }}{% end block %}
4
5 {% block container %}
6 <div class="container">
7 <section class="features-content col-12">
8 <h2 class="display-2 text-center">{{ code }} - {{ message }}</h2>
9
10 <div class="row mb-6">
11 <div class="col-md-8 offset-md-2">
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>
20 </div>
21 </div>
22
23 {% block explanation %}{% end block %}
24
25 {% if exception %}
26 <div class="row">
27 <div class="col-md-8 offset-md-2">
28 <pre>{{ exception }}</pre>
29 </div>
30 </div>
31 {% end %}
32 </section>
33 </div>
34 {% end block %}