-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.02 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.02 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
---
layout: page
styles:
- /css/main.css
- /css/ball/main.css
title: CSS Ball
favicon: /ball/favicon.ico
---
{% assign ball = site.data.ball['2021'] %}
<div class="text-center-div margin-top">
<h1 class="title">
{{ ball.name }} {{ ball.year }}
</h1>
<h2 class="subsubtitle venue-date">
<span class="avoidwrap"><a href="{{ball.location}}">{{ball.location}}</a></span> • <span class="avoidwrap">{{ball.date}}</span>
</h2>
<p class="text-block">
Attendees: {{ ball.attendees }}
</p>
</div>
<div class="text-center-div margin-bottom section-faq" id="FAQ">
{% for qanda in ball.features %}
<div class="faq">
<h3 class="subsubtitle question">{{ qanda.title }}</h3>
<p class="text-block answer">{{ qanda.paragraph }}</p>
</div>
{% for image in qanda.images %}
{% assign url = ball.image_root | append: image.name %}
{% assign alt = image.alt %}
<img class="image" src="{{ url }}", alt="{{ alt }}">
<br>
{% endfor %}
{% endfor %}
</div>