start reorganization of stemmaweb structure
[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     render_die => 1,
14 );
15
16 =head1 NAME
17
18 TreeOfTexts::View::TT - TT View for TreeOfTexts
19
20 =head1 DESCRIPTION
21
22 TT View for TreeOfTexts.
23
24 =head1 SEE ALSO
25
26 L<TreeOfTexts>
27
28 =head1 AUTHOR
29
30 Tara L Andrews
31
32 =head1 LICENSE
33
34 This library is free software. You can redistribute it and/or modify
35 it under the same terms as Perl itself.
36
37 =cut
38
39 1;