--- layout: event_subpage title: Lodging map: id: accommodation-map --- {% assign event = site.data.events[page.event_id] %}
{% for opt in event.accommodation_options %}

{% if opt.lon and opt.lat %} {{ opt.name }} {% else %} {{ opt.name }} {% endif %}

{% if opt.feature_label %}
{{ opt.feature_label }}
{% endif %} {% if opt.address %}

{{ opt.address }} {% endif %}

{% if opt.details %}
{{ opt.details | asciidocify }}
{% endif %} {% if opt.room_rate_range %}

Typical room rates:

{{ opt.room_rate_range }}

{% endif %} {% if opt.rooms %}

Room rates:

{% for room in opt.rooms %}

{{ room.rates.nightly.amount }} per night ({{ room.desc }}).

{% endfor %}
{% endif %} {% if opt.actions %} {% endif %}
{% endfor %}