Nachweis, dass das einspaltige Layout nicht funktioniert
[website] / dist / thymeleaf / projects / html-experimente / fast-leer-kein-menü.html
1 <!DOCTYPE html>
2 <html
3     xmlns="http://www.w3.org/1999/xhtml"
4     xmlns:layout="http://www.thymeleaf.org"
5     xmlns:th="http://www.thymeleaf.org"
6     layout:decorator="templates/layout"
7     th:with="contentclass='nomenu', uri='/projects/html-experimente/fast-leer-kein-menü.html'"
8     >
9   <head>
10     <title>HTML-Experimente - Fast leere Seite ohne Menü</title>
11     <link rel="stylesheet" type="text/css" href="../../../css/base.min.css"/>
12     <style type="text/css">
13       @import '../../../css/screen.min.css' screen;
14       @import '../../../css/print.min.css' print;
15     </style>
16   </head>
17   <body>
18     <nav layout:fragment="navigation">
19       <hr class="n"/>
20       <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
21       <h1 class="nav">Navigation</h1>
22       <h2 class="nav menu">Section-Menu</h2>
23       <ul id="menu" class="cf">
24         <li class="m blog"><a href="../blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
25         <li class="m projects"><a href="../projects.html" th:href="@{/projects.html}" class="m selected">Projects</a></li>
26         <li class="m about"><a href="../about.html" th:href="@{/about.html}" class="m">About</a></li>
27       </ul>
28     </nav>
29     <article class="main" layout:fragment="maincontent">
30       <header><h1>Fast leere Seite ohne Menü</h1></header>
31       <p>Ein ganz bischen Text...</p>
32     </article>
33   </body>
34 </html>