mirror of
https://github.com/CryptKeeperZK/ejs.git
synced 2026-01-10 16:07:59 -05:00
20 lines
378 B
Plaintext
20 lines
378 B
Plaintext
<ul>
|
|
<%- include('/hello.ejs') %>
|
|
<%
|
|
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>
|