{% extends "_layout" %} {% block content %}

{{ entry.title }}

{% include '_includes/room-details-entry' with {room:entry} %}
Request a reservation
{% set backgroundImage = entry.roomGallery.first.url('halfWidth') %}
{% if entry.roomGallery | length > 1 %}
{% for image in entry.roomGallery %} {% if loop.length < 4 %} {% set width = 'col' %} {% else %} {% set width = 'col-3' %} {% endif %}
{{ entry.title }}
{% endfor %}
{% endif %}
Capabilities
{% for capability in entry.capabilities%}
{{ capability.title }} {{ capability.title }}
{% endfor %}
{{ entry.featuredDescription }}
Want a Shareable Location?

{{ entry.ctaText ? entry.ctaText : 'Check out our interactive map'}}

{% set entries = craft.entries.section('rooms') .relatedTo(entry.roomType) .id('not ' ~ entry.id) .limit(2) %} {% if entries|length %}
Similar Spaces
{% for room in entries %}
{% include '_includes/roomPreview.twig' with {room:room,module:room} %}
{% endfor %}
{% endif %} {% endblock %}