14 lines
301 B
Plaintext
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') %> |