The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Dancer2::Template::TemplateToolkit - Template toolkit engine for Dancer2

VERSION

version 0.03

SYNOPSIS

To use this engine, you may configure Dancer2 via config.yaml:

    template:   "template_toolkit"

Or you may also change the rendering engine on a per-route basis by setting it manually with set:

    # code code code
    set template => 'template_toolkit';

METHODS

render TEMPLATE, TOKENS

Renders the template. The first arg is a filename for the template file or a reference to a string that contains the template. The second arg is a hashref for the tokens that you wish to pass to Template::Toolkit for rendering.

AUTHOR

Dancer Core Developers

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Alexis Sukrieh.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.