markup validates
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / wrapper / root.tt
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
5 <title>[% loc('moose page title') %]</title>
6 <link rel="stylesheet" href="css/style.css" type="text/css" />
7 <link rel="stylesheet" href="css/facebox.css" type="text/css" />
8 <script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
9 <script type="text/javascript" src="js/facebox.js"></script>
10 <script type="text/javascript">
11
12 jQuery(document).ready(function($) {
13     $('a[rel*=facebox]').facebox();
14     $('a[href^=http]').attr('target', '_blank');
15 });
16
17 </script>
18 </head>
19 <body>
20 <h1 style="background-image:url('images/header_bg_[% current_page.name %].jpg')">[% loc('header moose') %]</h1>
21 <h2>[% loc('header moose subtitle') %]</h2>
22 [% INCLUDE 'shared/nav.tt' %]
23 <div class="content">
24     [% content %]
25 </div>
26 <div class="footer">
27     [% INCLUDE 'shared/footer.tt' %]
28 </div>
29 <div id="code_sample" style="display:none">
30 [% INCLUDE 'code/point.tt' %]
31 </div>
32 </body>
33 </html>