Template-Pfade korrigiert/vereinheitlicht
[website] / dist / templates / 404.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/404.html', contentclass='nomenu'"
7     >
8   <head>
9     <title>404: Page Not Found!</title>
10     <!--/*-->
11     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
12     <link rel="stylesheet" type="text/css" href="../css/base.css"/>
13     <link rel="stylesheet" type="text/css" href="../css/screen.css" media="screen"/>
14     <link rel="stylesheet" type="text/css" href="../css/print.css" media="print"/>
15     <!--*/-->
16   </head>
17   <body>
18     <ol layout:fragment="breadcrumb">
19       <li class="b"><strong class="b">404: Page Not Found!</strong></li>
20     </ol>
21     <nav layout:fragment="navigation">
22       <hr class="n"/>
23       <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
24       <h1 class="nav">Navigation</h1>
25       <h2 class="nav menu">Section-Menu</h2>
26       <ul id="menu" class="cf">
27         <li class="m blog"><a href="../blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
28         <li class="m projects"><a href="../projects" th:href="@{/projects.html}" class="m">Projects</a></li>
29         <li class="m about"><a href="../about.html" th:href="@{/about.html}" class="m">About</a></li>
30       </ul>
31     </nav>
32     <article class="main" layout:fragment="maincontent">
33       <header><h1>404: Page Not Found!</h1></header>
34       <p>We do not know, where you are.</p>
35       <p>And we do not know, why you are here.</p>
36       <p>But we can tell you: WE ARE SORRY!</p>
37       <p>Really.</p>
38     </article>
39   </body>
40 </html>