Move all the templates back into the 'root' directory, otherwise make install will...
[catagits/Gitalist.git] / lib / Gitalist / View / Default.pm
1 package Gitalist::View::Default;
2 use Moose;
3 use namespace::autoclean;
4
5 extends 'Catalyst::View::TT';
6
7 use Template::Plugin::Cycle;
8
9 =head1 NAME
10
11 Gitalist::View::Default - Catalyst View
12
13 =head1 DESCRIPTION
14
15 Catalyst View.
16
17 =head1 AUTHOR
18
19 Dan Brook
20
21 =head1 LICENSE
22
23 This library is free software. You can redistribute it and/or modify
24 it under the same terms as Perl itself.
25
26 =cut
27
28 __PACKAGE__->config(
29         TEMPLATE_EXTENSION => '.tt2',
30         WRAPPER            => 'default.tt2',
31 );
32
33 __PACKAGE__->meta->make_immutable(inline_constructor => 0);