source: web/branches/test/trac/templates/site.html @ 2996

Last change on this file since 2996 was 2974, checked in by carmie, 15 years ago
File size: 832 bytes
Line 
1<html xmlns="http://www.w3.org/1999/xhtml"
2      xmlns:py="http://genshi.edgewall.org/"
3      py:strip="">
4
5  <!--! Add site-specific style sheet -->
6  <head py:match="head" py:attrs="select('@*')">
7    ${select('*|comment()|text()')}
8    <link rel="stylesheet" type="text/css"
9          href="${href.chrome('site/main.css')}" />
10  </head>
11
12  <body py:match="body" py:attrs="select('@*')">
13    <div id="siteheader">
14      <div class="nav" style="float: right; font-size: 0.7em; color: #945973;">
15        <p>Please <a href="/login" style="color: #945973; border-bottom: 1px dotted #10fb73;">log in as guest/guest</a> to report bugs.</p>
16      </div>
17    </div>
18
19    ${select('*|text()')}
20
21    <!--! Add site-specific footer -->
22    <div id="sitefooter">
23      <!--! Place your footer content here... -->
24    </div>
25  </body>
26</html>
Note: See TracBrowser for help on using the repository browser.