-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathevents.html
72 lines (64 loc) · 1.94 KB
/
events.html
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
layout: page
title: Events
styles:
- /css/events.css
- /css/fadein.css
---
<div class="page-header">
<div class="page-information">
<div class="page-description">
<h1>Events</h1>
<p>
Welcome to CSS! We do a lot of events throughout the year, both for CS students and
the wider university as well. This page details some of the stuff that we do
and what you can expect at them.
</p>
</div>
<div class="calendar-callout">
<p><i class="fas fa-calendar"></i>
For all our upcoming and recent events, <b>see our <a href="/calendar">calendar</a></b>!
</p>
</div>
</div>
<div class="tex">
<a href="/tex">
<img src="/assets/tex/tex_megaphone.svg">
</a>
</div>
</div>
<div class="events-listing fadein-container">
{% for event in site.events %}
<div class="event fadein hidden {% if event.long %} event-long {% endif %} {{ event.decoration }} {{ event.side }}" style="--child-index: {{ forloop.index }};">
<img
alt="{{ event.title }}"
class="event-image"
loading="lazy"
src="{{ event.image }}"
/>
{% if "missing-semester" == event.decoration %}
<div class="swooshy-thing"> </div>
{% endif %}
{% if "ball" == event.decoration %}
<a class="decorative-tex" href="/ball">
<img
alt="Ball TeX"
src="/assets/tex/raster/tex_ball.png"
/>
</a>
{% endif %}
<div class="details">
<h2>{{ event.title }}</h2>
{{ event.content | markdownify }}
</div>
</div>
{% endfor %}
</div>
<div class="page-footer">
<p>
We also run many other events, such as our <b>Hallowe'en quiz</b>,
<b>bouldering</b>, <b>competitions</b>, <b>mixers</b>, and <b>various collabs with other societies</b>
to name a few. Plus, we're always trying out new events and working on suggestions, so please see
our <a href="/calendar">calendar</a> for the latest from CSS!
</p>
</div>