%- include('../partials/header', { title: building.name }) %>
<%= building.name %>
Building Information
| Address: |
<%= building.address %> |
<% if (building.description) { %>
| Description: |
<%= building.description %> |
<% } %>
<% if (building.architect) { %>
| Architect: |
<%= building.architect %> |
<% } %>
Floors
Select a floor to view available units:
<% if (floors && floors.length > 0) { %>
<% floors.forEach(floor => { %>
Floor <%= floor.floor_number %>
<% if (floor.layout_image) { %>
Layout: <%= floor.layout_image %>
<% } %>
View Units
<% }); %>
<% } else { %>
No floors available.
<% } %>
← Back