add help text to relationship mapper
[scpubgit/stemmaweb.git] / lib / stemmaweb / View / TT.pm
CommitLineData
b8a92065 1package stemmaweb::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 stemmaweb->path_to( 'root', 'src' ),
12 ],
457430a6 13 ENCODING => 'utf-8',
b8a92065 14 render_die => 1,
15);
16
17=head1 NAME
18
19stemmaweb::View::TT - TT View for stemmaweb
20
21=head1 DESCRIPTION
22
23TT View for stemmaweb.
24
25=head1 SEE ALSO
26
27L<stemmaweb>
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;