HTML-Templates für die direkte Kontrolle als UTF-8-Kodiert markiert
[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.min.css"/>
13     <style type="text/css">
14       @import '../css/screen.min.css' screen;
15       @import '../css/print.min.css' print;
16     </style>
17     <!--*/-->
18   </head>
19   <body>
20     <ol layout:fragment="breadcrumb">
21       <li class="b"><strong class="b">404: Page Not Found!</strong></li>
22     </ol>
23     <nav layout:fragment="navigation">
24       <hr class="n"/>
25       <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
26       <h1 class="nav">Navigation</h1>
27       <h2 class="nav menu">Section-Menu</h2>
28       <ul id="menu" class="cf">
29         <li class="m blog"><a href="../blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
30         <li class="m projects"><a href="../projects" th:href="@{/projects.html}" class="m">Projects</a></li>
31         <li class="m about"><a href="../about.html" th:href="@{/about.html}" class="m">About</a></li>
32       </ul>
33     </nav>
34     <article class="main" layout:fragment="maincontent">
35       <header><h1>404: Page Not Found!</h1></header>
36       <p>We do not know, where you are.</p>
37       <p>And we do not know, why you are here.</p>
38       <p>But we can tell you: WE ARE SORRY!</p>
39       <p>Really.</p>
40     </article>
41   </body>
42 </html>