__END__
=pod
=head1 NAME
Mason::Manual::Cookbook - Recipes for common Mason tasks
=head1 RECIPES
=head2 HTML list formed from array
% foreach $item (@list) {
- <% $item %>
% }
=head2 HTML table formed from list of objects
Foo | Bar | Baz |
% foreach my $obj (@objects) {
<% $obj->foo %> |
<% $obj->bar %> |
<% $obj->baz %> |
% }
=head1 SEE ALSO
L
=head1 AUTHOR
Jonathan Swartz
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut