table of contents
Mason::Manual::Cookbook(3) | User Contributed Perl Documentation | Mason::Manual::Cookbook(3) |
NAME¶
Mason::Manual::Cookbook - Recipes for common Mason tasks
RECIPES¶
HTML list formed from array¶
<ul> % foreach $item (@list) { <li><% $item %></li> % } </ul>
HTML table formed from list of objects¶
<table> <tr><th>Foo</th><th>Bar</th><th>Baz</th></tr> % foreach my $obj (@objects) { <tr> <td><% $obj->foo %></td> <td><% $obj->bar %></td> <td><% $obj->baz %></td> </tr> % } </table>
SEE ALSO¶
Mason
AUTHOR¶
Jonathan Swartz <swartz@pobox.com>
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.
2015-05-17 | perl v5.40.0 |