NAME Template::Plugin::Calendar::Simple - Just another HTML calendar generator. SYNOPSIS [% USE cal = Calendar.Simple %] <table border="1"> <tr> [% FOREACH day = cal.days %] <th>[% day %]</th> [% END %] </tr> [% FOREACH row = cal.rows %] <tr> [% FOREACH col = row %] <td>[% col || ' ' %]</td> [% END %] </tr> [% END %] </table> DESCRIPTION Provides calendar delimiters for a Template Toolkit tem