use Template;
my $r = shift;
$r->send_http_header('text/html');
my $t = Template->new(INCLUDE_PATH => '/templates/path');
$t->process('search.ttml',
{ input => 'foo',
total_results => 15,
},
$r
) or die $t->error();