NAME
Sledge::Template::Xslate - Text::Xslate template system for Sledge
VERSION
This document describes Sledge::Template::Xslate version 0.0.2
SYNOPSIS
package MyApp::Pages;
use strict;
use Sledge::Pages::Compat;
use Sledge::Template::Xslate;
# ...
package MyApp::Pages::Foo;
use strict;
use utf8;
use parent qw(MyApp::Pages);
sub bar{
my $self = shift;
$self->tmpl->set_option(input_layer => ':utf8');# Please use set_config method if you want to use utf-8.
# ...
}
# ...
DESCRIPTION
Sledge::Template::Xslate is Text::Xslate template system for Sledge.
AUTHOR
Kenta Sato <kenta.sato.1990@gmail.com>
LICENCE AND COPYRIGHT
Copyright (c) 2010, Kenta Sato <kenta.sato.1990@gmail.com>
. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.