]> git.ipfire.org Git - ipfire.org.git/blob - src/error-pages/_layouts/error.html
Merge remote-tracking branch 'origin/new-design'
[ipfire.org.git] / src / error-pages / _layouts / error.html
1 HTTP/1.1 {{ page.error-code }} {{ page.error-description }}
2 Cache-Control: no-cache
3 Connection: close
4 Content-Type: text/html
5
6 <!DOCTYPE html>
7 <html lang="en">
8 <head>
9 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
10
11 <meta name="author" content="IPFire.org - IPFire Development Team" />
12
13 <title>{{ site.title }} - {% if page.title %}{{ page.title }}{% endif %}</title>
14
15 <!-- styling stuff -->
16 <meta name="viewport" content="width=device-width, initial-scale=1.0">
17 <link rel="stylesheet" href="/.errors/assets/main.css">
18 </head>
19
20 <body>
21 <nav class="navbar" role="navigation" aria-label="main navigation">
22 <div class="container">
23 <div class="navbar-brand">
24 <a class="navbar-item is-size-4" href="/">
25 <strong>
26 IPFire<span class="has-text-primary">_</span>
27 </strong>
28 </a>
29 </div>
30 </div>
31 </nav>
32
33 <div class="hero is-primary is-fullheight-with-navbar">
34 <div class="hero-body">
35 <div class="container">
36 <p class="title">Oops, Something Went Wrong</p>
37
38 {% if page.error-description %}
39 <p class="subtitle">{{ page.error-code }} &dash; {{ page.error-description }}</p>
40 {% endif %}
41
42 <div class="content">
43 {{ content }}
44 </div>
45 </div>
46 </div>
47 </div>
48 </body>
49 </html>