Comment: Template Toolkit for Mojo (Score 1) on 2010.04.21 0:54
I'm not sure what your rules are for installing extensions for the framework, but there's a TT renderer for Mojo:
http://search.cpan.org/~abh/MojoX-Renderer-TT-0.31/lib/MojoX/Renderer/TT.pm
(Install it, add the lines from the synopsis to your startup() method and name your templates foo.html.tt).
With Mojolicious::Lite I think it'd be something like
use MojoX::Renderer::TT;
my $tt = MojoX::Renderer::TT->build(
mojo => app,
);
app->renderer->add_handler( tt => $tt );
