Use jinja2 as the templating system
[cascardo/ipsilon.git] / templates / index.html
diff --git a/templates/index.html b/templates/index.html
new file mode 100644 (file)
index 0000000..230edc7
--- /dev/null
@@ -0,0 +1,23 @@
+<!doctype html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8"></meta>
+    <title>{{ title }}</title>
+    <link href="ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
+    <link href="ui/favicon.ico" type="image/ico" rel="icon"></link>
+</head>
+<body>
+    <div id="container">
+        <div id="background">
+            <div id="background-header"></div>
+            <div id="background-navigation"></div>
+            <div id="background-left"></div>
+            <div id="background-center"></div>
+            <div id="background-right"></div>
+        </div>
+        <div id="content">
+            <p>{{ content }}</p>
+        </div>
+    </div>
+</body>
+</html>