James Moger
2012-10-19 79dfe69726b6255464599ab852018e4d2ff96fdc
commit | author | age
1e47ab 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
JM 2 <html xmlns="http://www.w3.org/1999/xhtml"  
3       xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
4       xml:lang="en"  
5       lang="en"> 
6
5450d0 7     <!-- Head -->
cebf45 8     <wicket:head>
3cc6e2 9         <meta name="viewport" content="width=device-width, initial-scale=1.0">
cebf45 10            <title wicket:id="title">[page title]</title>
5450d0 11         <link rel="icon" href="gitblt-favicon.png" type="image/png" />
3cc6e2 12         
62cec2 13         <link rel="stylesheet" href="bootstrap/css/bootstrap.css"/>
JM 14         <link rel="stylesheet" type="text/css" href="gitblit.css"/>
cebf45 15     </wicket:head>
JM 16
3cc6e2 17     <body>
cebf45 18
JM 19         <!-- page content -->
20         <wicket:child />
21         
22         <!-- page footer -->
3cc6e2 23         <div class="container">
JM 24             <footer class="footer">
25                 <p class="pull-right">
26                     <a title="gitblit homepage" href="http://gitblit.com/">
27                         <span wicket:id="gbVersion"></span>
28                     </a> 
29                 </p>
30                 <div wicket:id="userPanel">[user panel]</div>
31             </footer>
cebf45 32         </div>
62cec2 33
JM 34         <!-- Override Bootstrap's responsive menu background highlighting -->
35         <style>
36         @media (max-width: 979px) {
37             .nav-collapse .nav > li > a:hover, .nav-collapse .dropdown-menu a:hover {
38                 background-color: #000070;
39             }
40             
41             .navbar div > ul .dropdown-menu li a {
42                 color: #ccc;
43             }
44         }
45         </style>
3cc6e2 46         
62cec2 47         <!-- Include scripts at end for faster page loading -->
JM 48         <script type="text/javascript" src="bootstrap/js/jquery.js"></script>
49         <script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>        
cebf45 50     </body>
20165d 51     
JM 52     <!-- user fragment -->
53     <wicket:fragment wicket:id="userFragment">
54         <span class="userPanel" wicket:id="username"></span>
55         <span class="userPanel" wicket:id="loginLink"></span>
2ec0d7 56         <span class="hidden-phone">
JM 57             <span class="userPanel" wicket:id="separator"></span>
58             <span class="userPanel"><a wicket:id="changePasswordLink"><wicket:message key="gb.changePassword"></wicket:message></a></span>
59         </span>
20165d 60     </wicket:fragment>
JM 61     
cebf45 62 </html>