I have what should be a really simple problem in Dancer: I have an array of names, and I'd like to print each one in a template. These names come from an outside source (not a database). However, when I try to do a foreach over the list in the template, I only get the first value.
Code:
use Dancer;
use Template;
set 'template' => 'template_toolkit';
get '/' => sub {
my @list = ("one","two","three");
template 'list.tt', {
'values' => @list,
};
};
dance;
And template:
<ul>
<%FOREACH item IN values %>
<li><% item %></li>
<%END%>
</ul>
This only outputs a list with a single item, "one". What am I missing?