- or download this
my $template = HTML::Template->new(
filename => 'file.tmpl',
path => [ '/path/to/templates',
'/alternate/path'
] );
- or download this
<tmpl_include name="<tmpl_var name='foo'>">
- or download this
my $tmpl = HTML::Template->new(
'filename' => "foo.tmpl",
...
my $text_ref = shift;
$$text_ref =~ s/special include tag/the actual include file ta
+g/;
} );