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