FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
2020.code4lib.org/_includes/menu.html at main · code4lib/2020.code4lib.org · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
code4lib
/
2020.code4lib.org
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
7
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
2020.code4lib.org
/
_includes
/
menu.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (45 loc) · 1.97 KB
Breadcrumbs
2020.code4lib.org
/
_includes
/
menu.html
Copy path
File metadata and controls
45 lines (45 loc) · 1.97 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
>
Back
|
FazBrowse Home
|
New Git URL