]> Dogcows Code - chaz/chatty/blob - root/tt/wrapper.tt
implemented session tracking and authentication
[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 [% IF error -%]
13 <p id="error">[% error %]</p>
14 [% END -%]
15 [% IF message -%]
16 <p id="message">[% message %]</p>
17 [% END -%]
18 <div id="inner">
19 [% content %]
20 <hr>
21 <div id="footer">
22 Copyright &copy; 2011 Charles McGarvey. Some rights reserved.
23 <div class="right">
24 <a href="http://www.catalystframework.org/">
25 <img src="[% c.uri_for('/static/img/btn_88x31_built_shadow.png') %]">
26 </a>
27 </div>
28 </div>
29 </div>
30 </div>
31 <script type="text/javascript" src="[% c.uri_for('/static/js/jquery.tools-1.2.6.min.js') %]"></script>
32 <script type="text/javascript">
33 [% IF error -%]
34 $(function () {
35 $("#error").expose({color: '#999'}).click(function() {
36 $.mask.close();
37 $(this).remove();
38 });
39 });
40 [% END -%]
41 </script>
42 </body>
43 </html>
This page took 0.034202 seconds and 4 git commands to generate.