logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Dancer2::Template::Simple - Pure Perl 5 template engine for Dancer2

Author

       Dancer Core Developers

Description

       This template engine is primarily to serve as a migration path for users of Dancer. It should be fine for
       development purposes, but you would be better served by using Dancer2::Template::TemplateToolkit or one
       of the many alternatives available on CPAN to power an application with Dancer2 in production
       environment.

       "Dancer2::Template::Simple" is written in pure Perl and has no C bindings to accelerate the template
       processing.

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.

Name

       Dancer2::Template::Simple - Pure Perl 5 template engine for Dancer2

See Also

       Dancer2, Dancer2::Core::Role::Template, Dancer2::Template::TemplateToolkit.

Synopsis

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

           template: simple

Syntax

       A template written for "Dancer2::Template::Simple" should be working just fine with
       Dancer2::Template::TemplateToolkit. The opposite is not true though.

       variables
           To interpolate a variable in the template, use the following syntax:

               <% var1 %>

           If var1 exists in the tokens hash given, its value will be written there.

Version

       version 1.1.2

See Also