James Moger
2011-05-27 1f9daef870a8c7a984955166a542628d69012ed5
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
cebf45 7     <!-- Head with Wicket-controlled resources in this package -->
JM 8     <wicket:head>
9            <title wicket:id="title">[page title]</title>
10            <wicket:link>
1f9dae 11                <link rel="stylesheet" type="text/css" href="/com/gitblit/wicket/resources/gitblit.css"/>
JM 12                <link rel="shortcut icon" href="/com/gitblit/wicket/resources/gitblt-favicon.png" type="image/png" />
cebf45 13            </wicket:link>
JM 14     </wicket:head>
15
16     <body>
17         <!-- page header -->
18         <div class="page_header">
19             <a title="gitblit homepage" href="http://gitblit.com/">
20                 <wicket:link>
1f9dae 21                     <img src="/com/gitblit/wicket/resources/gitblt_25.png" width="79" height="25" alt="gitblit" class="logo"/>
cebf45 22                 </wicket:link>
JM 23             </a>
166e6a 24             <span>
JM 25                 <a href="/"><span wicket:id="siteName">[site name]</span></a> / <span wicket:id="repositoryName">[repository name]</span> <span wicket:id="pageName">[page name]</span>
26             </span>    
cebf45 27         </div>
JM 28
29         <!-- page content -->
30         <wicket:child />
31         
32         <!-- page footer -->
33         <div class="page_footer">
34             <div style="float:right">
781223 35                 <span wicket:id="gbVersion"></span> 
cebf45 36             </div>
87cc1e 37             <div wicket:id="userPanel">[user panel]</div>
cebf45 38         </div>
JM 39     </body>
40 </html>