Section-Handling überarbeitet: URI ist generell der Key für Map-Zugriffe!
[website] / dist / thymeleaf / about.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     >
7   <head>
8     <title>About</title>
9     <link rel="stylesheet" type="text/css" href="../css/base.min.css"/>
10     <style type="text/css">
11       @import '../css/screen.min.css' screen;
12       @import '../css/print.min.css' print;
13     </style>
14   </head>
15   <body>
16     <ol layout:fragment="breadcrumb">
17       <li class="b"><a class="b" href="index.html" th:href="@{/index.html}">Home</a></li>
18       <li class="b"><strong class="b">About</strong></li>
19     </ol>
20     <nav layout:fragment="navigation">
21       <hr class="n"/>
22       <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
23       <h1 class="nav">Navigation</h1>
24       <h2 class="nav menu">Section-Menu</h2>
25       <ul id="menu" class="s active cf">
26         <li class="m blog"><a href="blog.html" th:href="@{/blog.html}" class="m">Blog</a></li>
27         <li class="m projects"><a href="projects.html" th:href="@{/projects.html}" class="m">Projects</a></li>
28         <li class="m about"><strong class="m">About</strong></li>
29       </ul>
30       <h2 class="nav submenu"><span class="s">Submenu for section </span><strong class="s">About</strong></h2>
31       <ul id="submenu">
32         <li class="s sub"><a href="expertise.html" th:href="@{/expertise.html}" class="s">Expertise</a></li>
33         <li class="s sub"><a href="references.html" th:href="@{/references.html}" class="s">References</a></li>
34         <li class="s "><a href="contact.html" th:href="@{/contact.html}" class="s">Contact</a></li>
35       </ul>
36     </nav>
37     <article class="main" layout:fragment="maincontent">
38       <header><h1>About</h1></header>
39       <p>
40         <span class="logo">juplo</span> is the place, where I collect and share
41         my more or less private projects.
42         It is a lab for experiments, that help me to do my job as a freelancer
43         at the desired level of quality.
44         Here, I can play with all the fancy new stuff, that might be a little
45         bit to much bleeding edge, to be used on a production site of a paying
46         client.
47       </p>
48       <p>
49         I decided to share all this stuff, because I am always learning a lot
50         from the internet-community.
51         I wanted to give back a little and try to help and teach others, as I
52         was helped and teached.
53         Also, this is a good oportunity, to show what I am doing and to do a 
54         little self-publicity...
55       </p>
56       <p>
57         <span class="logo">juplo</span> mainly consists of two parts:
58       </p>
59       <ul>
60         <li>
61           In the <a href="blog.html" th:href="@{/blog.html}">blog</a>, I summarize, how I solved
62           some every-day problems, other people might stumble across too.
63           I am introducing new projects there and announcing new versions and/or
64           bugfixes to older projects.
65         </li>
66         <li>
67           The other part of the site is the
68           <a href="projects.html" th:href="@{/projects.html}">projects-section</a>.
69           This is where I am hosting all projects, that I have made publicy
70           available.
71         </li>
72       </ul>
73       <p>
74         If you want to hire me, you can find out more on the
75         <a href="contact.html" th:href="@{/contact.html}">contact-page</a>.
76         If you are not yet sure, if you want to hire me, you might be
77         interessted in
78         <a href="expertise.html" th:href="@{/expertise.html}">what I can do for you</a>, or 
79         <a href="references.html" th:href="@{/references.html}">what I have already done for others</a>.
80       </p>
81     </article>
82     <aside layout:fragment="marginalcontent" class="m">
83       <h2>Funded by the Europian Union</h2>
84       <p>
85         As partner of the company
86         <a href="http://yourshouter.com" title="Visit the Homepage of the company">yourSHOUTER UG (haftungsbeschränkt)</a>
87         we publish results of a
88         <a href="http://yourshouter.com/projekte/crowdgest%C3%BCtzte-veranstaltungs-suchmaschine.html" title="Show details about the funded resarch-project">resarch-project</a>,
89         that is funded by the European Union and the federal state Northrhine-Westphalia.
90       </p>
91       <p>
92         <a href="http://yourshouter.com/projekte/crowdgest%C3%BCtzte-veranstaltungs-suchmaschine.html" title="Show details about the funded resarch-project" class="img">
93           <img src="../img/EFRE_Foerderhinweis_deutsch_farbig.svg" alt="Europäische Union: Investitionen in unsere Zukunft - Europäischer Fonds für regionale Entwicklung" th:src="@{/img/EFRE_Foerderhinweis_deutsch_farbig.svg}" width="100%"/>
94           <img src="../img/Ziel2NRW_4c_1809_eps.svg" alt="EFRE.NRW 2014-2020: Invesitionen in Wachstum und Beschäftigung" th:src="@{/img/Ziel2NRW_4c_1809_eps.svg}" width="100%"/>
95         </a>
96       </p>
97     </aside>
98     <ul layout:fragment="footer">
99       <li class="f" id="copyright">© <strong>mo</strong> 2013</li>
100       <li class="f"><a class="f" href="impressum.html" th:href="@{/impressum.html}">Impressum</a></li>
101       <li class="f about"><strong class="f">About</strong></li>
102     </ul>
103   </body>
104 </html>