deno.land / x / opine@2.3.4 / examples / eta / views / users.html
<h1>Users</h1>
<ul id="users">
<% it.users.forEach(function(user){ %>
<% /* Note that we can simply put the HTML tags inside the string,
rather than escaping them with < and >
This is because Eta automatically escapes interpolations */ %>
<li><%= user.name %> <%= "<" + user.email + ">" %></li>
<% }) %>
</ul>
Version Info