deno.land / x / opine@2.3.4 / examples / dejs / views / users.html
<!--
This template assumes you are running the example from the root
of the Opine project. The `dejs` doesn't resolve included paths
relative to the current template.
-->
<%- await include('examples/dejs/views/header.html', { title }); %>
<h1>Users</h1>
<ul id="users">
<% users.forEach(function(user){ %>
<li><%= user.name %> <<%= user.email %>></li>
<% }) %>
</ul>
<%- await include('examples/dejs/views/footer.html'); %>
Version Info