summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJulian Blake Kongslie2011-11-20 17:16:45 -0800
committerJulian Blake Kongslie2011-11-22 17:36:45 -0800
commit8e4431c8c758825537870bd0fc60a7bdeac6c416 (patch)
tree9ca841366f9e68169e614c773e50f59e01d98983 /templates
parentFirst run at a setup file. (diff)
downloadwriting-8e4431c8c758825537870bd0fc60a7bdeac6c416.tar.xz
Collapsing all changes up until this point, mostly to compact the repo.
Diffstat (limited to 'templates')
-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>