Bracket::View::TT - TT View for Bracket


Bracket documentation Contained in the Bracket distribution.

Index


Code Index:

NAME

Top

Bracket::View::TT - TT View for Bracket

DESCRIPTION

Top

TT View for Bracket.

AUTHOR

Top

SEE ALSO

Top

Bracket

Mateu X Hunter

LICENSE

Top

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.


Bracket documentation Contained in the Bracket distribution.

package Bracket::View::TT;

use strict;
use base 'Catalyst::View::TT';

__PACKAGE__->config(
    {
        TEMPLATE_EXTENSION => '.tt',
        PRE_PROCESS        => 'lib/config/pre_process.tt',
        WRAPPER            => 'lib/site/wrapper.tt',
    }
);

1;