source: gutenbach-web/master.html @ 84ed773

debianmacno-cupsweb
Last change on this file since 84ed773 was 84ed773, checked in by Edward Z. Yang <edwardzyang@…>, 15 years ago

Remove scaffolding we don't know, implement volume output.

Signed-off-by: Edward Z. Yang <edwardzyang@…>

  • Property mode set to 100644
File size: 1.4 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml"
4      xmlns:py="http://genshi.edgewall.org/"
5      xmlns:xi="http://www.w3.org/2001/XInclude"
6      py:strip="">
7    <xi:include href="header.html" />
8    <xi:include href="footer.html" />
9<head py:match="head" py:attrs="select('@*')">
10    <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
11    <title py:replace="''">Your title goes here</title>
12    <meta py:replace="select('*')"/>
13    <link rel="stylesheet" type="text/css" media="screen" href="${tg.url('/css/style.css')}" />
14</head>
15
16<body py:match="body" py:attrs="select('@*')">
17  ${header()}
18  <ul id="mainmenu">
19    <li class="first"><a href="${tg.url('/')}" class="${('', 'active')[defined('page') and page==page=='index']}">Welcome</a></li>
20        <li><a href="${tg.url('/about')}" class="${('', 'active')[defined('page') and page==page=='about']}">About</a></li>
21        <li><a href="http://groups.google.com/group/turbogears">Contact</a></li>
22  </ul>
23  <div id="content">
24    <py:with vars="flash=tg.flash_obj.render('flash', use_js=False)">
25        <div py:if="flash" py:content="XML(flash)" />
26    </py:with>
27    <div py:replace="select('*|text()')"/>
28    <!-- End of main_content -->
29    ${footer()}
30  </div>
31</body>
32</html>
Note: See TracBrowser for help on using the repository browser.