<%- include('../partials/header', { title: building.name }) %>

<%= building.name %>

Building Information

<% if (building.description) { %> <% } %> <% if (building.architect) { %> <% } %>
Address: <%= building.address %>
Description: <%= building.description %>
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