NAME
Mojolicious::Plugin::TtRenderer - Template Renderer Plugin
VERSION
version 1.47
SYNOPSIS
# Mojolicious
$self->plugin('tt_renderer');
$self->plugin(tt_renderer => {template_options => {FILTERS => [ ... ]}});
# Mojolicious::Lite
plugin 'tt_renderer';
plugin tt_renderer => {template_options => {FILTERS => [ ... ]}};
DESCRIPTION
Mojolicious::Plugin::TtRenderer is a simple loader for Mojolicious::Plugin::TtRenderer::Engine.
METHODS
Mojolicious::Plugin::TtRenderer inherits all methods from Mojolicious::Plugin and implements the following new ones.
register
$plugin->register;
Register renderer in Mojolicious application.
EXTRA STASH VARIABLES
The current controller instance can be accessed as c
.
[% c.req.headers.host %]
SEE ALSO
Mojolicious::Plugin::TtRenderer::Engine, Mojolicious, Mojolicious::Guides, http://mojolicious.org.
AUTHOR
original author: Ask Bjørn Hansen
current maintainer: Graham Ollis <plicease@cpan.org>
contributors:
vti
Marcus Ramberg
Matthias Bethke
Htbaa
Magnus Holm
Maxim Vuets
Rafael Kitover
giftnuss
Cosimo Streppone
Fayland Lam
Jason Crowther
spleenjack
Árpád Szász
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Ask Bjørn Hansen.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.