-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathmenu.html
More file actions
51 lines (47 loc) · 1.79 KB
/
menu.html
File metadata and controls
51 lines (47 loc) · 1.79 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
46
47
48
49
50
51
---
layout: page
styles:
- /css/main.css
- /css/ball/2026/main.css
title: CSS Ball
favicon: /ball/favicon.ico
---
{% assign ball = site.data.ball['2026'] %}
<div class="text-center-div margin-top margin-bottom section-details">
<h1 class="title">
{{ ball.name }} {{ ball.year }}
</h1>
<h2>
<span class="avoidwrap">{{ball.location}}</span> • <span class="avoidwrap">{{ball.date}}</span>
</h2>
{% for link in ball.menu-links %}
<a href='{{link.url}}' class="button {% if link.url == '' %}empty"{% else %}" href='{{link.url}}' {% endif %}>
{{link.text}}{% if link.url == '' %} (Coming Soon){% endif %}</a>
{% endfor %}
</div>
<hr>
<div class="text-center-div menu margin-bottom">
<h2 class="subtitle">Menu</h2>
<div class="text-center-div margin-bottom menu-footer">
<p class="text-block">
The venue will alter your chosen dish to account for any dietary requirements. Please ensure to enter any allergy or dietary information when you purchase your ticket.
If a dietary requirement means that the dish cannot be altered to meet your requirements the venue will provide an alternative.
</p>
</div>
{% for section in ball.menu %}
<hr class="small">
<h3 class="menu-section-title">{{ section[0] | capitalize }}</h3>
{% assign first = false %}
{% for item in section[1] %}
{% if first != false %}<div class="menu-item-separator">- OR -</div>{% endif %}
<div class="menu-item-container">
<h2 class="menu-item">{{ item.dish }}</h2>
<br>
{% if item.type %}
<h3 class="menu-type">{{ item.type }}</h3>
{% endif %}
</div>
{% assign first = true %}
{% endfor %}
{% endfor %}
</div>