About-Menüs an die Verwendung mit Thymeproxy angepasst
[website] / dist / thymeleaf / contact.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='/contact.html'"
7     >
8   <head>
9     <title>Contact</title>
10     <link rel="stylesheet" type="text/css" href="../css/base.min.css"/>
11     <style type="text/css">
12       @import '../css/screen.min.css' screen;
13       @import '../css/print.min.css' print;
14     </style>
15   </head>
16   <body>
17     <div id="content" class="main pack cf" layout:fragment="maincontent">
18       <div class="pack">
19         <div class="p left">
20           <img class="p" src="../img/kai-moritz.jpg" th:src="@{/img/kai-moritz.jpg}" alt="Portrait"/>
21         </div>
22         <article class="p right">
23           <header><h1>Contact</h1></header>
24           <h2>Address</h2>
25           <p>
26             Kai Moritz<br />
27             Zumsandestr. 29a<br />
28             48145 Münster
29           </p>
30           <h2>Email</h2>
31           <p><a href="mailto:kai@juplo.de">kai@juplo.de</a></p>
32           <h2>Phone</h2>
33           <p>+49 (0) 176 20 50 47 47</p>
34           <h2>Networking</h2>
35           <ul>
36             <li><a href="https://www.google.com/+KaiMoritz" title="Google+">www.google.com/+KaiMoritz</a></li>
37             <li><a href="https://www.xing.com/profile/Kai_Moritz" title="Xing">www.xing.com/profile/Kai_Moritz</a></li>
38           </ul>
39           <!--
40           <h2>About Me</h2>
41           <h2><em>Übersetzung?!?</em> Jobportale</h2>
42           -->
43         </article>
44       </div>
45     </div>
46   </body>
47 </html>