James Moger
2011-06-18 5450d08e4cd11176bcc50a5b3d001d291bd8982c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"  
      xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"  
      xml:lang="en"  
      lang="en"> 
 
    <!-- Head -->
    <wicket:head>
           <title wicket:id="title">[page title]</title>
        <link rel="stylesheet" type="text/css" href="gitblit.css"/>
        <link rel="icon" href="gitblt-favicon.png" type="image/png" />
    </wicket:head>
 
    <body>
        <!-- page header -->
        <div class="page_header">
            <a title="gitblit homepage" href="http://gitblit.com/">
                <img src="gitblt_25.png" width="79" height="25" alt="gitblit" class="logo"/>
            </a>
            <span>
                <span wicket:id="siteName">[site name]</span> / <span wicket:id="repositoryName">[repository name]</span> <span wicket:id="pageName">[page name]</span>
            </span>    
        </div>
 
        <!-- page content -->
        <wicket:child />
        
        <!-- page footer -->
        <div class="page_footer">
            <div style="float:right">
                <span wicket:id="gbVersion"></span> 
            </div>
            <div wicket:id="userPanel">[user panel]</div>
        </div>
    </body>
</html>