Make tags appear on the summary page. Remove code from Root controller
[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';
16bdb8df 6with 'Catalyst::View::Component::SubInclude';
d3feefcf 7
04d1d917 8use Template::Plugin::Cycle;
9
775e96e0 10__PACKAGE__->config(
11 TEMPLATE_EXTENSION => '.tt2',
12 WRAPPER => 'default.tt2',
16bdb8df 13 subinclude_plugin => 'SubRequest',
775e96e0 14);
15
16__PACKAGE__->meta->make_immutable(inline_constructor => 0);
17
18__END__
19
d3feefcf 20=head1 NAME
21
775e96e0 22Gitalist::View::Default - HTML View
d3feefcf 23
24=head1 DESCRIPTION
25
775e96e0 26HTML View.
d3feefcf 27
775e96e0 28=head1 AUTHORS
d3feefcf 29
775e96e0 30See L<Gitalist> for authors.
d3feefcf 31
32=head1 LICENSE
33
775e96e0 34See L<Gitalist> for the license.
d3feefcf 35
36=cut