- or download this
<html>
<head>
...
<!-- tmpl_include name='page.inc' -->
</body>
</html>
- or download this
<h2><!-- tmpl_var name='title' --></h2>
- or download this
my $template = HTML::Template->new( filename => 'layout.tmpl' );
$template->param( title => "Steve" );
print $template->output();
- or download this
<!-- tmpl_include name='<!-- tmpl_var name='filename' -->'>
- or download this
#
...
$template->param( title => "Something here" );
print $template->output();