in reply to Template Toolkit: template paths, INCLUDE_PATH, error

And now I can even get my INCLUDE blocks in my template to work:

form.html:

[% INCLUDE templates/header.html title = "Results page" %] <div>From template:</div> <div>[% message %]</div> [% INCLUDE templates/footer.html%]
I hope that helps somebody else. One tip: don't forget the braces around the INCLUDE_PATH:
my $template = Template->new({<----*****HERE INCLUDE_PATH => '/Users/7stud/perl_programs/cgi_projects/1proj' }); ^ | | *****AND HERE