... stuff ...
##
my $template = HTML::Template->new(rows => ...);
print $template->output;
##
##
... stuff ...
... more stuff ...
##
##
... stuff ...
... more stuff ...
##
##
my $template = HTML::Template->new(filename => 'bigpage.tmpl');
my $tableHTML = tableHTML(...);
$template->param(table => $tableHTML);
print $template->output;
##
##
sub tableHTML {
my %table_data = @_;
my $template = HTML::Template->new(filename => 'table.tmpl');
$template->param(%table_data);
return $template->output;
}