source: web/trunk/trac/templates/site.html @ 3028

Last change on this file since 3028 was 2735, checked in by Sam Hocevar, 15 years ago
  • Minor changes to the page layout.
  • Serve pages as UTF-8 by default.
File size: 736 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.6em;">
15        <p> Please log in as guest/guest 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.