-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmenu.html
More file actions
45 lines (45 loc) · 1.97 KB
/
menu.html
File metadata and controls
45 lines (45 loc) · 1.97 KB
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
{% assign meal = include.meal %}
<div class="col-md-12">
<a name="{{meal[0]}}"></a>
<aside class="tasting-menu" style="background-color:#fff;">
<h2 class=".h4 meal-header"><span>{{ meal[0] }}</span></h2>
<br/>
<ul class="tasting-options">
{% for category in meal[1] %}
<li>
<h3 class=".h5 category-header">{{ category[0] }}</h3>
<ul class="items list-unstyled">
{% for item in category[1] %}
<li>
{{ item[0] }}
{% assign notes = item[1] | split: ", " %}
{% for note in notes %}
{% if note == "VGN" %}
<img src="/assets/img/persistent/vegan.svg" alt="vegan" height="35"/>
{% endif %}
{% if note == "VGT" %}
<img src="/assets/img/persistent/vegetarian.svg" alt="vegetarian" height="35"/>
{% endif %}
{% if note == "GF" %}
(GF)
{% endif %}
{% if note == "DF" %}
(DF)
{% endif %}
{% endfor %}
</li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<p style="text-align:center">
<img src="/assets/img/persistent/vegetarian.svg" alt="vegetarian" height="35"/> = Vegetarian <img src="/assets/img/persistent/vegan.svg" alt="vegan" height="35"/> = Vegan
(GF) = Gluten Free
(DF) = Dairy Free
</p>
<p>
A selection of vegetarian, vegan and gluten free options are always available but if you need something specific, please ask an attendant at the meal and they will be able to assist.
</p>
</aside>
</div>