-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
166 lines (156 loc) · 4.87 KB
/
index.html
File metadata and controls
166 lines (156 loc) · 4.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
---
layout: page
---
{% assign website = site.data['2026'] %}
<div class="hero-container">
<div class="hero">
<img class="logo" src="/assets/birminghack-pathed.svg" />
<div class="date">
{{ website.event.date }}
</div>
<div class="location">
{{ website.event.location }}
</div>
</div>
</div>
<div class="welcome section">
<h3>Welcome to birmingHack!</h3>
<p><b>birmingHack</b> is a 24-hour hackathon hosted by the Computer Science Society at the University of Birmingham. Whether you're
a seasoned hacker, or have never participated in a hackathon before, hackathons are a great place to learn some new skills and
have fun!</p>
</div>
<div id="tickets" class="tickets section">
<div class="tickets-description">
{% if website.tickets.released %}
{% if website.tickets.available %}
<p class="tickets-title"><i class="fa-solid fa-ticket"></i> Tickets now available!</p>
<p>
You can now register for birmingHack 2026! Please note that tickets are limited, so make sure to register as soon as possible.
</p>
</div>
<a href="{{ website.tickets.link }}">Register <i class="fa-solid fa-arrow-right-long"></i></a>
{% else %}
<p class="tickets-title"><i class="fa-solid fa-ticket"></i> Tickets no longer available</p>
<p>
Registration for birmingHack 2026 is no longer available. Hope to see you next year!
</p>
</div>
{% endif %}
{% else %}
<p class="tickets-title"><i class="fa-solid fa-ticket"></i> Tickets not yet released</p>
<p>
Registration for birmingHack 2026 will open soon. Check back here or follow us for updates on when tickets become available.
</p>
</div>
{% endif %}
</div>
{% if website.show_sponsors %}
<div id="sponsors" class="sponsors section">
<h2 class="section-title">Sponsors</h2>
<!-- <p>
birmingHack {{ website.event.edition }} is proudly sponsored by the following
</p> -->
{% for sponsor-tier in website.sponsors %}
<div class="sponsors-container">
{% for sponsor in sponsor-tier.sponsors %}
<div class="sponsor" style="{{ 'background-color: #' | append: sponsor.colour }}">
<a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.name }}">
<img src="{{ sponsor.logo }}" alt="{{ sponsor.name }}" style="{{ 'height: ' | append: sponsor-tier.size | append: "px" }}; {% if sponsor.height %}{{ 'height: ' | append: sponsor.height | append: "px !important;"}}{% endif %}" />
</a>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
{% endif %}
<div id="schedule" class="schedule">
<div class="section">
<h2 class="section-title">Schedule</h2>
<p>
{{ website.schedule.notes }}
</p>
<div class="days">
{% for day in website.schedule.events %}
<div class="day">
<h3 class="header">{{ day.day }}</h3>
{% for item in day.events %}
<div class="item">
<div class="time">
{{ item.time }}
</div>
<div class="description">
{{ item.title }}
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
{% unless website.schedule.final %}
<p class="disclaimer">* This schedule is not final; it is subject to change.</p>
{% endunless %}
</div>
<div id="timer">
<div id="timer-time">
<div id="days">
<span class="count">
--
</span>
<span class="label">
days
</span>
</div>
<div id="hours">
<span class="count">
--
</span>
<span class="label">
hours
</span>
</div>
<div id="minutes">
<span class="count">
--
</span>
<span class="label">
minutes
</span>
</div>
<div id="seconds">
<span class="count">
--
</span>
<span class="label">
seconds
</span>
</div>
</div>
<div id="timer-text">
<span class="timer-label">until birmingHack starts!</span>
</div>
</div>
</div>
<div id="partners" class="partners section">
<h2 class="section-title">Partners</h2>
<div class="partners-container">
{% for partner in website.partners %}
<div class="partner" style="{{ 'background-color: #' | append: partner.colour }}">
<a href="{{ partner.url }}" target="_blank" title="{{ partner.name }}">
<img src="{{ partner.logo }}" alt="{{ partner.name }}" height="75" />
</a>
</div>
{% endfor %}
</div>
</div>
<div id="faqs" class="faqs section">
<h2 class="section-title">FAQs</h2>
{% for faq in website.faqs %}
<details>
<summary>{{ faq.question }}</summary>
<p>{{ faq.answer }}</p>
</details>
{% endfor %}
</div>
<script>
{% include countdown.js date="Mar 14, 2026 12:00:00" edition="2.0" %}
</script>