Help for this page

Select Code to Download


  1. or download this
    my $template = HTML::Template->new( 
        filename => 'file.tmpl',                                         
        path => [ '/path/to/templates',                                 
                  '/alternate/path'                                       
                ] );
    
  2. or download this
    <tmpl_include name="<tmpl_var name='foo'>">
    
  3. 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/;
         } );