]> Dogcows Code - chaz/chatty/blob - root/tt/wrapper.tt
add simple footer to template
[chaz/chatty] / root / tt / wrapper.tt
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="author" content="Charles McGarvey">
6 <meta name="description" content="This is a chat application in Catalyst!">
7 <link rel="stylesheet" type="text/css" href="[% c.uri_for('static/css/common.css') %]">
8 <title>Chatty - [% template.title or 'Toy chat application written in Perl/Catalyst' %]</title>
9 </head>
10 <body>
11 <div id="outer">
12 <div id="inner">
13 [% content %]
14 <hr>
15 <div id="footer">
16 Copyright &copy; 2011 Charles McGarvey. Some rights reserved.
17 <div class="right">
18 <a href="http://www.catalystframework.org/">
19 <img src="[% c.uri_for('static/img/btn_88x31_built_shadow.png') %]">
20 </a>
21 </div>
22 </div>
23 </div>
24 </div>
25 <script type="text/javascript" src="[% static('js/jquery.tools-1.2.6.min.js') %]"></script>
26 </body>
27 </html>
This page took 0.031833 seconds and 4 git commands to generate.