-
Notifications
You must be signed in to change notification settings - Fork 3
/
venue.html
46 lines (35 loc) · 1.08 KB
/
venue.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
---
title: Venue
layout: page
slide_id: 5
---
<div class="row mt-xs-0 mt-sm-0 my-2">
<div class="col text-muted">
<p>
The {{site.data.conference.full_title}} is scheduled on
{{site.data.conference.date}} and will be held at
{{site.data.conference.location}},
{{site.data.conference.country}}
</p>
<h6 class="text-info">Conference Location</h6>
<p>
{{site.data.venue.address}}
</p>
<h6 class="text-info">Accommodations</h6>
<p>
{{site.data.venue.accommodation.instructions}}
</p>
{% if site.data.venue.accommodation.hotels %}
<ul>
{% for hotel in site.data.venue.accommodation.hotels %}
<li><b>{{hotel.name}}</b> ({{hotel.address}})</li>
{% endfor %}
</ul>
{% endif %}
<h6 class="text-info">Directions</h6>
<p>
{{site.data.venue.directions}}
</p>
<img class="img-fluid" src="{{site.data.venue.direction}}" alt="direction">
</div>
</div>