wrapperize the HTML templates
[scpubgit/stemmatology.git] / TreeOfTexts / lib / TreeOfTexts / View / TT.pm
CommitLineData
dbcf12a6 1package TreeOfTexts::View::TT;
2
3use strict;
4use warnings;
5
6use base 'Catalyst::View::TT';
7
8__PACKAGE__->config(
9 TEMPLATE_EXTENSION => '.tt',
10 INCLUDE_PATH => [
11 TreeOfTexts->path_to( 'root', 'src' ),
12 ],
4fb61281 13 WRAPPER => 'wrapper.tt',
dbcf12a6 14 render_die => 1,
15);
16
17=head1 NAME
18
19TreeOfTexts::View::TT - TT View for TreeOfTexts
20
21=head1 DESCRIPTION
22
23TT View for TreeOfTexts.
24
25=head1 SEE ALSO
26
27L<TreeOfTexts>
28
29=head1 AUTHOR
30
31Tara L Andrews
32
33=head1 LICENSE
34
35This library is free software. You can redistribute it and/or modify
36it under the same terms as Perl itself.
37
38=cut
39
401;