mirror of
https://github.com/CryptKeeperZK/ejs.git
synced 2026-01-08 15:13:50 -05:00
10 lines
184 B
Plaintext
10 lines
184 B
Plaintext
<h1>Users</h1>
|
|
|
|
<% function user(user) { %>
|
|
<li><strong><%= user.name %></strong> is a <%= user.age %> year old <%= user.species %>.</li>
|
|
<% } %>
|
|
|
|
<ul>
|
|
<% users.map(user) %>
|
|
</ul>
|