This repository was archived by the owner on Aug 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmenu.html
More file actions
41 lines (41 loc) · 1.77 KB
/
Copy pathmenu.html
File metadata and controls
41 lines (41 loc) · 1.77 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
{% assign meal = include.meal %}
<div class="col-md-12">
<a name="{{meal[0]}}"></a>
<aside class="tasting-menu" style="background-color:#fff;">
<h4><span>{{ meal[0] }}</span></h4>
<br/>
<ul class="tasting-options">
{% for category in meal[1] %}
<li>
<h5>{{ category[0] }}</h5>
<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 %}
{% 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
</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>