WIP of moving the project list to an action.
[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';
749c6583 7with 'Catalyst::View::ContentNegotiation::XHTML';
d3feefcf 8
9=head1 NAME
10
11Gitalist::View::Default - Catalyst View
12
13=head1 DESCRIPTION
14
15Catalyst View.
16
17=head1 AUTHOR
18
19Dan Brook,,,
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(
29 TEMPLATE_EXTENSION => '.tt2',
30 # Set the location for TT files
31 INCLUDE_PATH => [ Gitalist->path_to( 'templates' ) ],
32# WRAPPER => 'default.tt2',
33);
34
42fe5d11 35__PACKAGE__->meta->make_immutable(inline_constructor => 0);