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