Listing 8: view-stories.html %# -*- mmm-classes: mason -*- Latest news

Latest news

% if (@stories) { % foreach my $story (@stories) {

<% $story->{headline} %>

<% $story->{body} %>

% } % } else {

No news in this category.

% } <%once> my $dbh; <%init> # Connect to the database, if we have not already done so $dbh = $m->comp("database-connect.comp"); # Get the stories my @stories = $m->comp("get-news.comp", category_id => $category_id, how_many => $how_many); <%args> $category_id $how_many