NAME

Sledge::Template::Xslate::Alloy - Text::Xslate template system for Sledge and load module Text::Xslate::Bridge::Alloy

VERSION

This document describes Sledge::Template::Xslate::Alloy version 0.0.2

SYNOPSIS

    package MyApp::Pages;
    use strict;
    use Sledge::Pages::Compat;
    use Sledge::Template::Xslate::Alloy;

    # ...

    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::Alloy is Text::Xslate template system for Sledge. This module is use Text::Xslate::Bridge::Alloy module and use TTerse syntax for Text::Xslate on Sledge::Template::Xslate.

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.

SEE ALSO

Text::Xslate Text::Xslate::Syntax::TTerse Text::Xslate::Bridge::Alloy Template::Alloy Template::Alloy::VMethod