source: trac/templates/site.html @ 2687

Last change on this file since 2687 was 2687, checked in by Sam Hocevar, 15 years ago
  • Smaller buttons.
  • Try to create a menu header.
File size: 889 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;">
15        <ul>
16          <li class="first"><a href="${href.wiki}">Home</a></li>
17          <li class="last"><a href="${href.report}/1">Bug reports</a></li>
18        </ul>
19        <p> Please log in as guest/guest to submit tickets. </p>
20      </div>
21    </div>
22
23    ${select('*|text()')}
24
25    <!--! Add site-specific footer -->
26    <div id="sitefooter">
27      <!--! Place your footer content here... -->
28    </div>
29  </body>
30</html>
Note: See TracBrowser for help on using the repository browser.