The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use lib '../../lib/';
use lib 'lib';
use Sinatraish;

view_opt 'TT' => {
    INCLUDE_PATH => 'tmpl/'
};

get '/' => sub {
    my $c = shift;
    $c->render('index.tt', {name => 'John'});
};

walk;