source: gutenbach-web/master.html @ 1998d46

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

Prettify.

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  <div class="wrapper">
18  ${header()}
19  <ul id="mainmenu">
20    <li class="first"><a href="${tg.url('/')}" class="${('', 'active')[defined('page') and page==page=='index']}">Status</a></li>
21        <li><a href="${tg.url('/about')}" class="${('', 'active')[defined('page') and page==page=='about']}">About</a></li>
22        <li><a href="mailto:sipb@mit.edu">Contact</a></li>
23  </ul>
24  <div id="content">
25    <py:with vars="flash=tg.flash_obj.render('flash', use_js=False)">
26        <div py:if="flash" py:content="XML(flash)" />
27    </py:with>
28    <div py:replace="select('*|text()')"/>
29    <!-- End of main_content -->
30  </div>
31    <div class="push"></div>
32</div>
33  ${footer()}
34</body>
35</html>
Note: See TracBrowser for help on using the repository browser.