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

<html>
  <head>
    <meta charset="utf-8" />
    <title><TMPL_VAR TITLE></title>
    <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>