NAME

Sledge::Template::Xslate::TTerse - Text::Xslate template system for Sledge and use TTerse syntax

VERSION

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

SYNOPSIS

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

    # ...

    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::TTerse is Text::Xslate template system for Sledge. This module is 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