]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/error.html
location: Remove unused base.html
[ipfire.org.git] / src / templates / error.html
CommitLineData
081800ca 1{% extends "base.html" %}
81675874 2
37ed7c3c 3{% block title %}{{ message or status_code }}{% end block %}
81675874 4
60b0917c 5{% block container %}
fc59c100
MT
6 <section class="hero is-primary is-fullheight-with-navbar">
7 <div class="hero-body">
60e0ada2 8 <div class="container">
fc59c100 9 <p class="title">
60e0ada2 10 {{ _("Oops - We Are Sorry, But Something Went Wrong") }}
fc59c100
MT
11 </p>
12 <p class="subtitle">
13 {% block message %}{{ _("Error %s") % status_code }}{% end block %}
14 </p>
c7bcb9ca
MT
15
16 {% block main %}{% end block %}
60024cc8 17 </div>
99dd2029 18 </div>
fc59c100 19 </section>
81675874 20{% end block %}
37ed7c3c
MT
21
22{% block footer %}{% end block %}