attempt blind fix of mysterious syntax error
[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',
e847b186 10 ENCODING => 'utf-8',
b8a92065 11 render_die => 1,
12);
13
14=head1 NAME
15
16stemmaweb::View::TT - TT View for stemmaweb
17
18=head1 DESCRIPTION
19
20TT View for stemmaweb.
21
22=head1 SEE ALSO
23
24L<stemmaweb>
25
26=head1 AUTHOR
27
28Tara L Andrews
29
30=head1 LICENSE
31
32This library is free software. You can redistribute it and/or modify
33it under the same terms as Perl itself.
34
35=cut
36
371;