<%args>
$posts  # From the dispatcher
$title
</%args>
<&|/_elements/wrapper, title => $title&>
% while(my $p = $posts->next) {
  <% Jifty->web->region(name => "post-".$p->id,
                        path => "/fragments/post_short",
                        defaults => {id => $p->id} )%>
% }
</&>
