summaryrefslogtreecommitdiff
path: root/templates/page.tmpl
blob: bef43ed07e1e72a31a250634cf8f6f95b5cbafb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>

<html>
  <head>
    <meta charset="utf-8" />
    <title><TMPL_VAR TITLE></title>
    <link rel="stylesheet" href="/yui/reset/reset-min.css" type="text/css" />
    <link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
  </head>
  <body>
    <section class="header">
      <h1><TMPL_VAR TITLE></h1>
    </section>
    <section class="content">
      <TMPL_VAR CONTENT>
    </section>
    <section class="footer">
      <div class="lastedited">Last edited <TMPL_VAR MTIME></div>
    </section>
  </body>
</html>