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

14 lines
301 B
Plaintext

<%- include('partials/head') -%>
<%- include ('partials/navbar') %>
<h1>properties</h1>
<ul>
<% for (let property of properties) { %>
<li>
<%= property.PropertyName %>
</li>
<% } %>
</ul>
<%- include ('partials/footer') %>