Tidied up wording in README.
[catagits/Gitalist.git] / lib / Gitalist / View / Default.pm
1 package Gitalist::View::Default;
2
3 use strict;
4 use warnings;
5 use parent 'Catalyst::View::TT';
6
7 =head1 NAME
8
9 Gitalist::View::Default - Catalyst View
10
11 =head1 DESCRIPTION
12
13 Catalyst View.
14
15 =head1 AUTHOR
16
17 Dan Brook,,,
18
19 =head1 LICENSE
20
21 This library is free software. You can redistribute it and/or modify
22 it 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
33 1;