Umstellung auf Thymeleaf: Schritt 3 - Versucht, das Projet umzustellen
[website] / src / main / webapp / WEB-INF / templates / html5page.jsp
1 <!DOCTYPE html>
2 <%@page contentType="text/html;charset=UTF-8"%>
3 <%@page pageEncoding="UTF-8"%>
4 <%@page session="false" %>
5 <%@taglib uri="http://tiles.apache.org/tags-tiles" prefix="t" %>
6 <html>
7   <head>
8     <title>juplo - <t:getAsString name="title"/></title>
9     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
10     <t:insertAttribute name="htmlhead"/>
11   </head>
12   <body id="top" class="<t:getAsString name="contentclass"/>" onload="prettyPrint()">
13     <div id="page" class="cf">
14       <header id="header">
15         <t:insertAttribute name="header"/>
16         <span id="slogan"><strong>Java</strong> bits from nerds for nerds</span>
17         <hr class="h" />
18       </header>
19       <div id="breadcrumb">
20         <strong class="b title">You are here:</strong>
21         <ol class="b">
22           <t:insertAttribute name="breadcrumb"/>
23         </ol>
24         <a class="hide" href="#nav" title="Show navigation menu">Jump to navigation</a>
25         <hr class="b" />
26       </div>
27       <main class="content cf">
28         <t:insertAttribute name="contentcontainer"/>
29         <div class="marginal">
30           <nav id="nav">
31             <hr class="n"/>
32             <a class="hide" href="#top" title="Show Content">Jump back to the top of the page</a>
33             <t:insertAttribute name="navigation"/>
34             <hr class="n"/>
35           </nav>
36           <t:insertAttribute name="marginalcontent" ignore="true"/>
37         </div>
38       </main>
39       <footer id="footer">
40         <hr class="f" />
41         <ul id="footerlinks">
42           <t:insertAttribute name="footer"/>
43         </ul>
44       </footer>
45     </div>
46   </body>
47 </html>