]> ruin.nu Git - ndwebbie.git/blob - lib/NDWeb/View/TT.pm
fc22bae70bb1033e9e32a7330dc174215cb625c7
[ndwebbie.git] / lib / NDWeb / View / TT.pm
1 package NDWeb::View::TT;
2
3 use strict;
4 use base 'Catalyst::View::TT';
5
6 __PACKAGE__->config({
7         INCLUDE_PATH => [
8                 NDWeb->path_to( 'root', 'src' ),
9                 NDWeb->path_to( 'root', 'lib' )
10         ],
11         PRE_PROCESS  => 'config/main.tt2',
12         WRAPPER      => 'site/wrapper.tt2',
13         ERROR        => 'error.tt2',
14         TIMER        => 0,
15         #DEBUG        => 'undef',
16         TEMPLATE_EXTENSION => '.tt2',
17 });
18
19 =head1 NAME
20
21 NDWeb::View::TT - Catalyst TTSite View
22
23 =head1 SYNOPSIS
24
25 See L<NDWeb>
26
27 =head1 DESCRIPTION
28
29 Catalyst TTSite View.
30
31 =head1 AUTHOR
32
33 A clever guy
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;
43