Templates und Seiten ein Verzeichnis höher geschoben und thymeleaf/ gelöscht
[website] / dist / projects / html-experimente / fast-leer-kein-menü.html
diff --git a/dist/projects/html-experimente/fast-leer-kein-menü.html b/dist/projects/html-experimente/fast-leer-kein-menü.html
new file mode 100644 (file)
index 0000000..f109551
--- /dev/null
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html
+    xmlns="http://www.w3.org/1999/xhtml"
+    xmlns:layout="http://www.thymeleaf.org"
+    xmlns:th="http://www.thymeleaf.org"
+    layout:decorator="templates/layout"
+    th:with="contentclass='nomenu', uri='/projects/html-experimente/fast-leer-kein-menü.html'"
+    >
+  <head>
+    <title>HTML-Experimente - Fast leere Seite ohne Menü</title>
+    <!--/*-->
+    <link rel="stylesheet" type="text/css" href="../../css/base.min.css"/>
+    <style type="text/css">
+      @import '../../css/screen.min.css' screen;
+      @import '../../css/print.min.css' print;
+    </style>
+    <!--*/-->
+  </head>
+  <body>
+    <nav layout:fragment="navigation">
+      <hr class="n"/>
+      <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
+      <h1 class="nav">Navigation</h1>
+      <h2 class="nav menu">Section-Menu</h2>
+      <ul id="menu" class="cf">
+        <li class="m blog"><a href="../../blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
+        <li class="m projects"><a href="../../projects.html" th:href="@{/projects.html}" class="m selected">Projects</a></li>
+        <li class="m about"><a href="../../about.html" th:href="@{/about.html}" class="m">About</a></li>
+      </ul>
+    </nav>
+    <article class="main" layout:fragment="maincontent">
+      <header><h1>Fast leere Seite ohne Menü</h1></header>
+      <p>Ein ganz bischen Text...</p>
+    </article>
+  </body>
+</html>