1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<py:include href="header" />
<py:include href="footer" />
<head>
<title py:block="title">Your title goes here</title>
<py:block name="head_content">
<link rel="stylesheet" type="text/css" media="screen" href="${tg.url('/css/style.css')}" />
<link rel="stylesheet" type="text/css" media="screen" href="${tg.url('/css/admin.css')}" />
</py:block>
</head>
<body>
<py:block name="body_header"><h1>My Header</h1></py:block>
<ul py:block="mainmenu" id="mainmenu">
<li class="first"><a href="${tg.url('/')}" class="${('', 'active')[defined('page') and page=='index']}">Welcome</a></li>
<li><a href="${tg.url('/about')}" class="${('', 'active')[defined('page') and page=='about']}">About</a></li>
<li py:if="tg.auth_stack_enabled"><a href="${tg.url('/auth')}" class="${('', 'active')[defined('page') and page=='auth']}">Authentication</a></li>
<li><a href="${tg.url('/environ')}" class="${('', 'active')[defined('page') and page=='environ']}">WSGI Environment</a></li>
<li><a href="http://groups.google.com/group/turbogears">Contact</a></li>
</ul>
<div id="content">
<py:if test="defined('page')">
<div class="currentpage">
Now Viewing: <span py:replace="page"/>
</div>
</py:if>
<py:with vars="flash=tg.flash_obj.render('flash', use_js=False)">
<div py:if="flash" py:content="XML(flash)" />
</py:with>
<py:block name="body_text">Your body text goes here</py:block>
<py:block name="bodyfooter">${footer()}</py:block>
</div>
</body>
</html>
|