Brotherton-Aspire-App/views/contacts.ejs
2024-02-02 16:44:34 -08:00

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') %>