NAME
Yeb::Plugin::Xslate - Yeb Plugin for Text::Xslate
VERSION
version 0.100
SYNOPSIS
package MyYeb;
use Yeb;
BEGIN {
plugin 'Xslate';
}
xslate_path root('templates');
r "/" => sub {
st page => 'root';
xslate 'index';
};
xslate_function myq => sub {
"The parameter q contains ".pa('q');
};
1;
FRAMEWORK FUNCTIONS
xslate
xslate_path
xslate_function
SUPPORT
IRC
Join #web-simple on irc.perl.org. Highlight Getty for fast reaction :).
Repository
http://github.com/Getty/p5-yeb-plugin-static
Pull request and additional contributors are welcome
Issue Tracker
http://github.com/Getty/p5-yeb-plugin-static/issues
AUTHOR
Torsten Raudssus <torsten@raudss.us>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Torsten Raudssus.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.