google-code-prettify hinzugefügt
[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 and (min-width: 960px)
14     </style>
15     <script src="js/base.js"></script>
16     <!--[if IE 8]>
17       <script src="js/ie8.js"></script>
18     <![endif]-->
19     <!--[if IE 7]>
20       <script src="js/ie7.js"></script>
21     <![endif]-->
22     <!--[if lt IE 7]>
23       <script src="js/ie6.js"></script>
24     <![endif]-->
25   </head>
26   <body onload="prettyPrint()">
27     <div id="page">
28       <header id="header">
29         <a href="/" title="Home" id="logo">juplo</a>
30         <span id="slogan"><strong>Java</strong> bits from nerds for nerds</span>
31         <hr class="h" />
32       </header>
33       <div id="breadcrumb">
34         <strong class="b title">You are here:</strong>
35         <ol class="b">
36           <t:insertAttribute name="breadcrumb"/>
37         </ol>
38         <a class="hide" href="#navigation">Jump to navigation</a>
39         <div class="b"></div>
40       </div>
41       <div class="content <t:getAsString name="contentclass"/> cf">
42         <section id="content" class="main">
43           <h1><t:getAsString name="title"/></h1>
44           <t:insertAttribute name="maincontent"/>
45         </section>
46         <div class="marginal">
47           <nav id="nav">
48             <hr />
49             <a id="navigation"></a>
50             <t:insertAttribute name="navigation"/>
51             <hr />
52           </nav>
53           <t:insertAttribute name="marginalcontent" ignore="true"/>
54         </div>
55       </div>
56       <footer id="footer">
57         <hr />
58         <ul id="footerlinks">
59           <li class="f" id="copyright">© <strong>mo</strong> 2013</li>
60           <li class="f"><a class="f" href="contact.html">Contact</a></li>
61           <li class="f"><a class="f" href="impressum.html">Impressum</a></li>
62         </ul>
63       </footer>
64     </div>
65   </body>
66 </html>