Tidied up wording in README.
[catagits/Gitalist.git] / lib / Gitalist / View / Default.pm
CommitLineData
d3feefcf 1package Gitalist::View::Default;
2
3use strict;
4use warnings;
5use parent 'Catalyst::View::TT';
6
7=head1 NAME
8
9Gitalist::View::Default - Catalyst View
10
11=head1 DESCRIPTION
12
13Catalyst View.
14
15=head1 AUTHOR
16
17Dan Brook,,,
18
19=head1 LICENSE
20
21This library is free software. You can redistribute it and/or modify
22it under the same terms as Perl itself.
23
24=cut
25
26__PACKAGE__->config(
27 TEMPLATE_EXTENSION => '.tt2',
28 # Set the location for TT files
29 INCLUDE_PATH => [ Gitalist->path_to( 'templates' ) ],
30# WRAPPER => 'default.tt2',
31);
32
331;