Fehlerseiten angepasst
[website] / dist / thymeleaf / templates / error.html
1 <!DOCTYPE html>
2 <html
3     xmlns="http://www.w3.org/1999/xhtml"
4     xmlns:layout="http://www.thymeleaf.org"
5     layout:decorator="templates/layout"
6     th:with="uri='/templates/error.html', contentclass='nomenu'"
7     >
8   <head>
9     <title>An Unexpected Error Occured!</title>
10     <link rel="stylesheet" type="text/css" href="../css/base.min.css"/>
11     <style type="text/css">
12       @import '../css/screen.min.css' screen;
13       @import '../css/print.min.css' print;
14     </style>
15   </head>
16   <body>
17     <ol layout:fragment="breadcrumb">
18       <li class="b"><strong class="b">An Unexpected Error Occured!</strong></li>
19     </ol>
20     <nav layout:fragment="navigation">
21       <hr class="n"/>
22       <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
23       <h1 class="nav">Navigation</h1>
24       <h2 class="nav menu">Section-Menu</h2>
25       <ul id="menu" class="cf">
26         <li class="m blog"><a href="../blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
27         <li class="m projects"><a href="../projects" th:href="@{/projects.html}" class="m">Projects</a></li>
28         <li class="m about"><a href="../about.html" th:href="@{/about.html}" class="m">About</a></li>
29       </ul>
30     </nav>
31     <article class="main" layout:fragment="maincontent">
32       <header><h1>An Unexpected Error Occured!</h1></header>
33       <p>We do not know, what happend.</p>
34       <p>But we can tell you: WE ARE SORRY!</p>
35       <p>Really.</p>
36     </article>
37   </body>
38 </html>