.gitignore
[catagits/Gitalist.git] / lib / Gitalist / View / Default.pm
CommitLineData
d3feefcf 1package Gitalist::View::Default;
42fe5d11 2use Moose;
3use Gitalist; # ->path_to
4use namespace::autoclean;
d3feefcf 5
42fe5d11 6extends 'Catalyst::View::TT';
d3feefcf 7
8=head1 NAME
9
10Gitalist::View::Default - Catalyst View
11
12=head1 DESCRIPTION
13
14Catalyst View.
15
16=head1 AUTHOR
17
18Dan Brook,,,
19
20=head1 LICENSE
21
22This library is free software. You can redistribute it and/or modify
23it under the same terms as Perl itself.
24
25=cut
26
27__PACKAGE__->config(
28 TEMPLATE_EXTENSION => '.tt2',
29 # Set the location for TT files
30 INCLUDE_PATH => [ Gitalist->path_to( 'templates' ) ],
31# WRAPPER => 'default.tt2',
32);
33
42fe5d11 34__PACKAGE__->meta->make_immutable(inline_constructor => 0);