summaryrefslogtreecommitdiff
path: root/quoins/templates/sitetemplate.html
diff options
context:
space:
mode:
Diffstat (limited to 'quoins/templates/sitetemplate.html')
-rw-r--r--quoins/templates/sitetemplate.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/quoins/templates/sitetemplate.html b/quoins/templates/sitetemplate.html
new file mode 100644
index 0000000..39f4053
--- /dev/null
+++ b/quoins/templates/sitetemplate.html
@@ -0,0 +1,18 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml"
3 xmlns:py="http://genshi.edgewall.org/"
4 xmlns:xi="http://www.w3.org/2001/XInclude"
5 py:strip="">
6<head py:match="head" py:attrs="select('@*')">
7 <meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
8 <title py:replace="''">Your title goes here</title>
9 <link py:for="css in tg_css" py:replace="ET(css.display())" />
10 <link py:for="js in tg_js_head" py:replace="ET(js.display())" />
11 <meta py:replace="select('*')" />
12</head>
13<body py:match="body" py:attrs="select('@*')">
14 <div py:for="js in tg_js_bodytop" py:replace="ET(js.display())" />
15 <div py:replace="select('*|text()')" />
16 <div py:for="js in tg_js_bodybottom" py:replace="ET(js.display())" />
17</body>
18</html>