-
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.07 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.07 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['2020'] %}
<div class="text-center-div margin-top margin-bottom">
<h1 class="title">
{{ ball.name }} {{ ball.year }}
</h1>
<h2 class="subsubtitle venue-date">
<span class="avoidwrap">{{ball.location}}</span> • <span class="avoidwrap">{{ball.date}}</span>
</h2>
<p class="text-block">
Attendees: {{ ball.attendees }}
</p>
{% for link in ball.links %}
<a href='{{link.url}}' class="button">{{link.text}}</a>
{% endfor %}
</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>
{% assign url = ball.image_root | append: qanda.image %}
<img class="image" src="{{ url }}", alt="An image taken at the 2020 CSS Ball">
<br>
{% endfor %}
</div>