Basis-Layout für veraltete Browser (IE6 & Co.) eingeführt
[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     <base href="http://${pageContext.request.serverName}:${pageContext.request.serverPort}${pageContext.request.contextPath}/" />
11     <link rel="stylesheet" type="text/css" href="css/base.css" />
12     <style type="text/css">
13       @import 'css/screen.css' screen
14     </style>
15   </head>
16   <body>
17     <header id="header">
18       <a href="/" title="Home" id="logo">juplo</a>
19       <span id="slogan"><strong>Java</strong> bits from nerds for nerds</span>
20       <hr />
21     </header>
22     <div id="breadcrumb">
23       <strong class="b">You are here:</strong>
24       <ol class="b">
25         <t:insertAttribute name="breadcrumb"/>
26       </ol>
27       <a class="hide" href="#navigation">Jump to navigation</a>
28     </div>
29     <div class="content <t:getAsString name="contentclass"/> cf">
30       <section id="content" class="main">
31         <h1><t:getAsString name="title"/></h1>
32         <t:insertAttribute name="maincontent"/>
33       </section>
34       <div class="marginal">
35         <nav id="nav">
36           <a id="navigation"></a>
37           <t:insertAttribute name="navigation"/>
38         </nav>
39         <t:insertAttribute name="marginalcontent" ignore="true"/>
40       </div>
41     </div>
42     <footer id="footer">
43       <ul id="footerlinks">
44         <li class="f" id="copyright">© <strong>mo</strong> 2013</li>
45         <li class="f"><a class="f" href="contact.html">Contact</a></li>
46         <li class="f"><a class="f" href="impressum.html">Impressum</a></li>
47       </ul>
48     </footer>
49   </body>
50 </html>