James Moger
2015-11-22 ed552ba47c02779c270ffd62841d6d1048dade70
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"  
cf17b2 5       lang="en"
JM 6       ng-app> 
1e47ab 7
5450d0 8     <!-- Head -->
cebf45 9     <wicket:head>
3cc6e2 10         <meta name="viewport" content="width=device-width, initial-scale=1.0">
f10286 11         <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
cebf45 12            <title wicket:id="title">[page title]</title>
5450d0 13         <link rel="icon" href="gitblt-favicon.png" type="image/png" />
3cc6e2 14         
62cec2 15         <link rel="stylesheet" href="bootstrap/css/bootstrap.css"/>
a90d72 16         <link rel="stylesheet" href="bootstrap/css/iconic.css"/>
1ea553 17         <link rel="stylesheet" href="fontawesome/css/font-awesome.min.css"/>
86bdc2 18         <link rel="stylesheet" href="octicons/octicons.css"/>
62cec2 19         <link rel="stylesheet" type="text/css" href="gitblit.css"/>
cebf45 20     </wicket:head>
JM 21
3cc6e2 22     <body>
cebf45 23
JM 24         <!-- page content -->
25         <wicket:child />
26         
27         <!-- page footer -->
3cc6e2 28         <div class="container">
JM 29             <footer class="footer">
30                 <p class="pull-right">
31                     <a title="gitblit homepage" href="http://gitblit.com/">
32                         <span wicket:id="gbVersion"></span>
33                     </a> 
34                 </p>
35             </footer>
cebf45 36         </div>
62cec2 37
JM 38         <!-- Override Bootstrap's responsive menu background highlighting -->
39         <style>
40         @media (max-width: 979px) {
41             .nav-collapse .nav > li > a:hover, .nav-collapse .dropdown-menu a:hover {
6ef8d7 42                 background-color: #002060;
62cec2 43             }
JM 44             
45             .navbar div > ul .dropdown-menu li a {
46                 color: #ccc;
47             }
48         }
49         </style>
3cc6e2 50         
62cec2 51         <!-- Include scripts at end for faster page loading -->
JM 52         <script type="text/javascript" src="bootstrap/js/jquery.js"></script>
53         <script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>        
bae957 54         <wicket:container wicket:id="bottomScripts"></wicket:container>
cebf45 55     </body>
JM 56 </html>