]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/error.html
Update Christman campaign copy
[ipfire.org.git] / src / templates / error.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ message or status_code }}{% end block %}
4
5 {% block container %}
6 <div class="container">
7 <div class="row justify-content-center mt-5">
8 <div class="col col-md-5">
9 <h5 class="mb-0">{% block message %}{{ _("Error %s") % status_code }}{% end block %}</h5>
10 <h1>{{ _("oops, something went wrong") }}</h1>
11
12 {% block main %}{% end block %}
13 </div>
14 </div>
15 </div>
16 {% end block %}
17
18 {% block footer %}{% end block %}