NAME
Dancer2::Core::Role::Template - Role for template engines
VERSION
version 0.10
DESCRIPTION
Any class that consumes this role will be able to be used as a template engine under Dancer2.
In order to implement this role, the consumer must implement the method render
. This method will receive three arguments:
ATTRIBUTES
name
The name of the template engine (e.g.: Simple).
charset
The charset. The default value is UTF-8.
default_tmpl_ext
The default file extension. If not provided, tt is used.
views
Path to the directory containing the views.
layout
Path to the directory containing the layouts.
engine
Contains the engine.
METHODS
view_pathname($view)
Returns the full path to the requested view.
layout_pathname($layout)
Returns the full path to the requested layout.
render_layout($layout, \%tokens, \$content)
Render the layout with the applied tokens
apply_renderer($view, \%tokens)
apply_layout($content, \%tokens, \%options)
process($view, \%tokens, \%options)
METHODS
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.