-
Notifications
You must be signed in to change notification settings - Fork 1
/
_lodging.html
63 lines (50 loc) · 2.88 KB
/
_lodging.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% extends "_layout.html" %}
{% block title %}Lodging{% endblock %}
{% block content %}
<div class="container">
<h2>Lodging at Copper Mountain</h2>
<p>
A typical lodge room has one or two queen beds, and a two-bedroom condominium has
one or two queen beds in each bedroom, two baths, a kitchen, a dining area,
and fireplace. Please be sure to verify the number of beds and the layout when
making reservations.
</p>
<h4>Per night rates (as of Spring 2016) are as follows</h4>
<pre>
{% for d in info.rates -%}
{% set dd = d.popitem() %}
{{ dd[0] }}: {{ dd[1] }}
{%- endfor %}
</pre>
<p> Make your room reservation directly with Copper Mountain on or before
<b>{{ deadlines.lodging.date }}</b>.
Availability of rooms cannot be guaranteed after this date.
Copper Mountain reserves the right to release part of the conference
room block if 50% of the block is not reserved by this date. After this date,
all remaining unreserved rooms in the conference block will be released.
In previous years, we have indeed run out of rooms, so please reserve your rooms
as soon as possible. </p>
<p> State and local taxes (13.30%) will be added to the cost of the room.
If available, group rates can be applied to stays two days before and after the
conference. Identify yourself with the {{info.year}} Conference Group code
<b>{{info.groupcode}}</b> to get group rates.</p>
<h4>Individual Lodging Deposit Policy</h4>
<p> A 15% lodging deposit will be required upon making reservations. The
balance on the room reservation will be billed to the credit card number on
file 21 days prior to arrival.</p>
<h4>Individual Lodging Cancellation Policy</h4>
<p>For individual attendees who cancel their lodging reservations, the following will be in effect:
<ul>
<li>If cancelled 21 days or more prior to arrival date, refund on the deposit amount received will be made less 10%.</li>
<li>If cancelled less than 21 days prior to arrival date, the individual is subject to full forfeiture of the reservation value.</li>
</ul>
<h4>Copper Mountain Resort Reservations</h4>
Please reference group code <b>{{info.groupcode}}</b>. Note: if you plan to arrive a day early for the tutorials, you will need to call Copper Lodging directly (see below).
<ul class="fa-ul">
<li><i class="fa-li fa fa-phone"></i> North America Toll Free Phone Number: 866-837-2996</li>
<li><i class="fa-li fa fa-phone"></i> Direct Phone Number: +1+970+968-2318</li>
<li><i class="fa-li fa fa-at"></i> Website: <a href="https://inntopia.travel/ecomm/package/package/912471/en-US/?packageid=33825&promocode=1882">Website</a></li>
<li><i class="fa-li fa fa-envelope"></i> <a href="http://www.coppercolorado.com/winter/contact_us">Email (webform)</a> </li>
</ul>
</div>
{% endblock %}