summaryrefslogtreecommitdiff
path: root/templates/base.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base.tmpl')
-rw-r--r--templates/base.tmpl22
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/base.tmpl b/templates/base.tmpl
new file mode 100644
index 0000000..55b420e
--- /dev/null
+++ b/templates/base.tmpl
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+ <head>
+ <title>$title</title>
+ <link rel="StyleSheet" href="/static/paste.css" type="text/css" />
+#block head
+#end block
+ </head>
+ <body>
+ <div id="page">
+ <div id="page-header">
+ <h1><a href="/">$header</a></h1>
+ </div>
+ <div id="page-content">
+#block content
+#end block
+ </div>
+ </div>
+ </body>
+</html>