14 lines
296 B
Plaintext
14 lines
296 B
Plaintext
<%- include('partials/head') -%>
|
|
|
|
<%- include ('partials/navbar') %>
|
|
|
|
<h1>Contacts</h1>
|
|
<ul>
|
|
<% for (let contact of contacts) { %>
|
|
<li>
|
|
<%= contact.FirstName %>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
|
|
<%- include ('partials/footer') %> |