review/web_templates/base.html @ 43d109fde61e
webui
Fix the table alignment before it drives me crazy.
author |
Steve Losh <steve@stevelosh.com> |
date |
Wed, 14 Oct 2009 19:08:14 -0400 |
parents |
efc3c9173ce1 |
children |
f8adc5c231f3 |
$def with (rd, content)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>${ basename(rd.target.root) } / hg-review</title>
<link rel="stylesheet" href="/media/aal.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/media/style.css" type="text/css" media="screen" />
</head>
<body>
<div id="head-wrap">
<h1>${ basename(rd.target.root) }</h1>
</div>
<div id="main-wrap">
$:{ content }
</div>
</body>
</html>