]> Dogcows Code - chaz/chatty/blob - lib/Chatty/View/HTML.pm
adding a basic template to build off of
[chaz/chatty] / lib / Chatty / View / HTML.pm
1 package Chatty::View::HTML;
2
3 use strict;
4 use warnings;
5
6 use base 'Catalyst::View::TT';
7
8 __PACKAGE__->config(
9 TEMPLATE_EXTENSION => '.tt',
10 INCLUDE_PATH => [
11 Chatty->path_to('root', 'tt'),
12 ],
13 WRAPPER => 'wrapper.tt',
14 render_die => 1,
15 COMPILE_DIR => '/tmp/tt_cache',
16 );
17
18
19 =head1 NAME
20
21 Chatty::View::HTML - TT View for Chatty
22
23 =head1 DESCRIPTION
24
25 TT View for Chatty.
26
27 =head1 SEE ALSO
28
29 L<Chatty>
30
31 =head1 AUTHOR
32
33 Charles McGarvey
34
35 =head1 LICENSE
36
37 This library is free software. You can redistribute it and/or modify
38 it under the same terms as Perl itself.
39
40 =cut
41
42 1;
This page took 0.031326 seconds and 4 git commands to generate.