moved shit to trunk
[catagits/Reaction.git] / root / base / xhtml
1 [% BLOCK xhtml_main; -%]
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
6
7 <head>
8   <title>[% window.title %]</title>
9
10   [%- FOREACH stylesheet IN stylesheets; -%]
11   <link rel="stylesheet" type="text/css" href="[% ctx.uri_for('/stylesheets', stylesheet) %]" />
12   [%- END; -%]
13   [%- FOREACH javascript IN javascripts; -%]
14   <script src="[% ctx.uri_for('/javascript', javascript) %]" type="text/javascript"></script>
15   [%- END; -%]
16
17   <meta http-equiv="Content-Type" content="text/html; charset=utf8" />
18   <meta name="GENERATOR" content="Catalyst/TT" />
19 </head>
20
21 <body>
22 [% INCLUDE header;
23 window.render_viewport(self.inner); %]
24 [% INCLUDE footer; %]
25 </body>
26 </html>
27 [%- END;
28 main_block = 'xhtml_main';
29 -%]