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

Buildings

Select a buildint to view it.

<% if (buildings && buildings.length > 0) { %> <% buildings.forEach(building => { %>

<%= building.name %>

Address: <%= building.address %>

<% if (building.description) { %>

<%= building.description %>

<% } %> View Details
<% }); %> <% } else { %>

No buildings available at this time.

<% } %>