<%init>
my $posts = MyWeblog::Model::PostCollection->new();
$posts->unlimit();
</%init>

<&|/_elements/wrapper, title => Jifty->config->framework('ApplicationName') &>
<dl>
% while (my $post = $posts->next) {
     <dt><%$post->title%></dt>
     <dd><%$post->body%></dd>
% }
</dl>
</&>