wrapperize the HTML templates
[scpubgit/stemmatology.git] / TreeOfTexts / lib / TreeOfTexts / View / TT.pm
1 package TreeOfTexts::View::TT;
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         TreeOfTexts->path_to( 'root', 'src' ),
12     ],
13     WRAPPER => 'wrapper.tt',
14     render_die => 1,
15 );
16
17 =head1 NAME
18
19 TreeOfTexts::View::TT - TT View for TreeOfTexts
20
21 =head1 DESCRIPTION
22
23 TT View for TreeOfTexts.
24
25 =head1 SEE ALSO
26
27 L<TreeOfTexts>
28
29 =head1 AUTHOR
30
31 Tara L Andrews
32
33 =head1 LICENSE
34
35 This library is free software. You can redistribute it and/or modify
36 it under the same terms as Perl itself.
37
38 =cut
39
40 1;