Make the version number sane and clean up copyright/license statements everywhere
[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 __PACKAGE__->config(
10   TEMPLATE_EXTENSION => '.tt2',
11   WRAPPER            => 'default.tt2',
12 );
13
14 __PACKAGE__->meta->make_immutable(inline_constructor => 0);
15
16 __END__
17
18 =head1 NAME
19
20 Gitalist::View::Default - HTML View
21
22 =head1 DESCRIPTION
23
24 HTML View.
25
26 =head1 AUTHORS
27
28 See L<Gitalist> for authors.
29
30 =head1 LICENSE
31
32 See L<Gitalist> for the license.
33
34 =cut