]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/error.html
wiki: Only match usernames when a word starts with @
[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 <section class="hero is-primary is-fullheight-with-navbar">
7 <div class="hero-body">
8 <div class="container">
9 <p class="title">
10 {{ _("Oops - We Are Sorry, But Something Went Wrong") }}
11 </p>
12 <p class="subtitle">
13 {% block message %}{{ _("Error %s") % status_code }}{% end block %}
14 </p>
15
16 {% block main %}{% end block %}
17 </div>
18 </div>
19 </section>
20 {% end block %}
21
22 {% block footer %}{% end block %}