moved templating system to jinja
[yourule] / templates / site.tmpl
1 <html>
2 <head>
3   <link rel="stylesheet" type="text/css" href="/static/style.css" />
4   <script src="/static/prototype.js" type="text/javascript"></script>
5   <title>You Rule</title>
6 </head>
7 <body>
8 <div id="wrapper">
9 <div id="header">
10 <h1>YouRule</h1>
11 <h2>Onscreen Ruler Generator</h2>
12 </div>
13
14 <div class="mainbox">
15   <div class="mainbox_top"><div></div></div>
16   <div class="mainbox_content">
17     <% block body %>
18     <% endblock %>
19   </div>
20   <div class="mainbox_bottom"><div></div></div>
21 </div>
22
23 <div id="footer">
24 <p>copyright 2007 :: <a href="http://mako.cc/">benjamin mako hill</a><br />
25 <a href="http://mako.cc/projects/yourule">source freely available</a> :: <a
26 href="http://www.affero.org/oagpl.html">affero general public
27 license</a></p>
28 </div>
29
30 </div>
31
32 </body>
33 </html>

Benjamin Mako Hill || Want to submit a patch?