using the new Resource::Pack::URL role for jquery
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / wrapper / root.tt
CommitLineData
bed39e78 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">
3cb66fff 3<head>
bed39e78 4<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
9db2b8f2 5<title>[% loc('moose page title') %]</title>
bed39e78 6<link rel="stylesheet" href="css/style.css" type="text/css" />
7<link rel="stylesheet" href="css/facebox.css" type="text/css" />
5460f713 8<script type="text/javascript" src="js/jquery.min.js"></script>
bed39e78 9<script type="text/javascript" src="js/facebox.js"></script>
10<script type="text/javascript">
91d99a11 11
12jQuery(document).ready(function($) {
13 $('a[rel*=facebox]').facebox();
14 $('a[href^=http]').attr('target', '_blank');
15});
16
17</script>
3cb66fff 18</head>
19<body>
91d99a11 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>
3cb66fff 29</body>
30</html>