The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
[% PROCESS header
   title = 'This is a Test'
%]

Once upon a time there was a small caterpillar called Frank.  Frank was
very hungry so he went into the garden and ate all the cabbages.

Item:
[% FOREACH item = ['foo', 'bar', 'baz'] %]
   * [% item %]
[% END %]

People:
[% FOREACH person = people %]
   * [% person.id %] : [% person.name %] ([% person.email %])
[% IF person.isadmin -%]
     ** THIS PERSON IS AN ADMINISTRATOR **
[% END -%]
[% END -%]

[% PROCESS footer %]