mirror of
https://github.com/CryptKeeperZK/ejs.git
synced 2026-01-10 07:58:25 -05:00
19 lines
349 B
Plaintext
19 lines
349 B
Plaintext
<ul>
|
|
<%
|
|
users.forEach(function (user) {
|
|
echo('<li>');
|
|
echo('<strong>' + user.name + '</strong>');
|
|
echo('is a ' + user.age + ' year old ' + user.species);
|
|
echo('</li>\n');
|
|
});
|
|
-%>
|
|
</ul>
|
|
|
|
<ul>
|
|
<%
|
|
users.forEach(function (user) {
|
|
echo(include('./partial.ejs', {user: user}));
|
|
});
|
|
%>
|
|
</ul>
|