in reply to HTML::Template Isn't Working

I viewed the source and it looks like it's just a standard 'blank page' line. What am I doing wrong?

Try

print $template->output();

Also, you'll need to ensure that you print a valid HTTP response header first.

print "Content-type: text/html\n\n";

will do.