summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/page.tmpl20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl
new file mode 100644
index 0000000..f7baae0
--- /dev/null
+++ b/templates/page.tmpl
@@ -0,0 +1,20 @@
1<!DOCTYPE html>
2
3<html>
4 <head>
5 <meta charset="utf-8" />
6 <title><TMPL_VAR TITLE></title>
7 <link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
8 </head>
9 <body>
10 <section class="header">
11 <h1><TMPL_VAR TITLE></h1>
12 </section>
13 <section class="content">
14 <TMPL_VAR CONTENT>
15 </section>
16 <section class="footer">
17 <div class="lastedited">Last edited <TMPL_VAR MTIME></div>
18 </section>
19 </body>
20</html>