Templates und Seiten zurück in das Unterverzeichnis /thymeleaf/ verschoben
[website] / dist / thymeleaf / impressum.html
diff --git a/dist/thymeleaf/impressum.html b/dist/thymeleaf/impressum.html
new file mode 100644 (file)
index 0000000..20a1562
--- /dev/null
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html
+    xmlns="http://www.w3.org/1999/xhtml"
+    xmlns:layout="http://www.thymeleaf.org"
+    layout:decorator="/templates/layout"
+    th:with="uri='/impressum.html'"
+    >
+  <head>
+    <title>Impressum</title>
+    <!--/*-->
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+    <link rel="stylesheet/less" type="text/css" href="../less/base.less"/>
+    <link rel="stylesheet/less" type="text/css" href="../less/screen.less" media="screen"/>
+    <link rel="stylesheet/less" type="text/css" href="../less/print.less" media="print"/>
+    <script src="../js/less-1.7.0.min.js"></script>
+    <!--*/-->
+  </head>
+  <body>
+    <article class="main" layout:fragment="maincontent">
+      <header><h1>Impressum</h1></header>
+      <p><em>Angaben gemäß § 5 TMG:</em></p>
+      <p>
+        Kai Moritz<br />
+        juplo.de<br />
+        Zumsandestr. 29a<br />
+        48145 Münster
+      </p>
+      <p>Telefon: +49 (0) 176 20 50 47 47</p>
+      <p>E-Mail: <a href="mailto:kai@juplo.de">kai@juplo.de</a></p>
+      <p>Umsatzsteuer-Identifikationsnummer gemäß §27 a Umsatzsteuergesetz: DE 23 500 84 56</p>
+      <p>Aufsichtsbehörde: Stadt Münster</p>
+      <!-- http://www.e-recht24.de/impressum-generator.html -->
+      <h1>Contact</h1>
+      <p>
+        More contact-information (Facebook, Google+, ...) can be found on the
+        <a href="contact.html" th:href="@{/contact.html}" title="Show all contact-informations">contact-page</a>.
+      </p>
+    </article>
+    <aside layout:fragment="marginalcontent" th:include="templates/fragments :: about"></aside>
+    <ul layout:fragment="footer">
+      <li class="f" id="copyright">© <strong>mo</strong> 2013</li>
+      <li class="f"><strong class="f">Impressum</strong></li>
+      <li class="f about"><a class="f" href="about.html" th:href="@{/about.html}">About</a></li>
+    </ul>
+  </body>
+</html>