blob: a201242bc949c5d510b336b79d0458b21aac88c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package FixMyStreet::App::View::Web;
use base 'Catalyst::View::TT';
use strict;
use warnings;
use FixMyStreet::App;
__PACKAGE__->config(
TEMPLATE_EXTENSION => '.html',
INCLUDE_PATH => [ #
FixMyStreet::App->path_to( 'templates', 'web', 'default' ),
],
render_die => 1,
);
=head1 NAME
FixMyStreet::App::View::Web - TT View for FixMyStreet::App
=head1 DESCRIPTION
TT View for FixMyStreet::App.
=cut
1;
|