use Mojolicious::Lite -signatures; my $static = app->static; push @{$static->paths}, '/tmp/mojoexample/'; get '/' => sub($c){ $c->stash( name => 'testing' ); $c->stash( ext => '.jpg' ); } => 'index'; app->start; __DATA__ @@ index.html.ep it works!