summaryrefslogtreecommitdiff
path: root/quoins/templates/master.html
diff options
context:
space:
mode:
Diffstat (limited to 'quoins/templates/master.html')
-rw-r--r--quoins/templates/master.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/quoins/templates/master.html b/quoins/templates/master.html
new file mode 100644
index 0000000..cf82a1f
--- /dev/null
+++ b/quoins/templates/master.html
@@ -0,0 +1,24 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:py="http://genshi.edgewall.org/"
5 xmlns:xi="http://www.w3.org/2001/XInclude"
6 py:strip="">
7<head py:match="head" py:attrs="select('@*')">
8 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
9 <title py:replace="''">Your title goes here</title>
10 <meta py:replace="select('*')"/>
11 <link rel="stylesheet" type="text/css" media="screen" href="${tg.url('/css/style.css')}" />
12</head>
13
14<body py:match="body" py:attrs="select('@*')">
15 <div id="content">
16 <py:with vars="flash=tg.flash_obj.render('flash', use_js=False)">
17 <div py:if="flash" py:content="XML(flash)" />
18 </py:with>
19 <div py:replace="select('*|text()')"/>
20 <!-- End of content -->
21 </div>
22</body>
23</html>
24