aboutsummaryrefslogtreecommitdiffstats
path: root/root/base/xhtml
diff options
context:
space:
mode:
Diffstat (limited to 'root/base/xhtml')
-rw-r--r--root/base/xhtml29
1 files changed, 0 insertions, 29 deletions
diff --git a/root/base/xhtml b/root/base/xhtml
deleted file mode 100644
index 0c0ea26..0000000
--- a/root/base/xhtml
+++ /dev/null
@@ -1,29 +0,0 @@
-[% BLOCK xhtml_main; -%]
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-
-<head>
- <title>[% window.title %]</title>
-
- [%- FOREACH stylesheet IN stylesheets; -%]
- <link rel="stylesheet" type="text/css" href="[% ctx.uri_for('/stylesheets', stylesheet) %]" />
- [%- END; -%]
- [%- FOREACH javascript IN javascripts; -%]
- <script src="[% ctx.uri_for('/javascript', javascript) %]" type="text/javascript"></script>
- [%- END; -%]
-
- <meta http-equiv="Content-Type" content="text/html; charset=utf8" />
- <meta name="GENERATOR" content="Catalyst/TT" />
-</head>
-
-<body>
-[% INCLUDE header;
-window.render_viewport(self.inner); %]
-[% INCLUDE footer; %]
-</body>
-</html>
-[%- END;
-main_block = 'xhtml_main';
--%]