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

NAME

Dancer2::Template::MojoTemplate - Mojo::Template wrapper for Dancer2

VERSION

version 0.1.1

SYNOPSIS

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

    template: 'mojo_template'
    engines:
        mojo_template:
            auto_escape: 1
            trim_mark: '-'
            prepend: 'my $t = $_[0];'
    template:   "mojo_template"

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

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

DESCRIPTION

This is an interface between Dancer2's template engine abstraction layer and the Mojo::Template module.

Based on the Dancer::Template::MojoTemplate module.

In order to use this engine, use the template setting:

    template: mojo_template

This can be done in your config.yml file or directly in your app code with the set keyword.

You can configure Mojo::Template :

    template: 'mojo_template'
    engines:
        mojo_template:
            auto_escape: 1
            trim_mark: '-'
            prepend: 'my $t = $_[0];'

SEE ALSO

Dancer2, Mojo::Template, http://mojolicio.us/

AUTHOR

Nikita Melikhov <ver@0xff.su>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Nikita Melikhov.

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