-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhello.html
131 lines (111 loc) · 4.13 KB
/
hello.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
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
---
layout: default
---
{% include navbar.html %}
<div class="container" id="top">
<img srcset="/images/logov2-960.png 960w,
/images/logov2-1280.png 1280w,
/images/logov2-1920.png 1920w,
/images/logov2-2560.png 2560w,
/images/logov2-3840.png 3840w,
/images/logov2.png 14538w"
sizes="(max-width: 1200px) 960px,
(max-width: 1200px) 1280px,
(max-width: 1600px) 1920px,
(max-width: 3200px) 2560px,
(max-width: 4800px) 3840px,
14538px"
src="/images/logov2.png" id="logo" class="responsive-img" alt="RGU Hack" width="14538" height="5393"/>
</div>
<div class="container">
<div class="row">
<div class="col s12 m12">
<ul class="collection with-header">
<li class="collection-header"><h2>Updates</h2></li>
{% for announcement in site.data.announcements %}
<li class="collection-item"><b>{{ announcement.title }}</b>  {{ announcement.detail }}</li>
{% endfor %}
</ul>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<div class="card-panel rguhack-navbar-color z-depth-0">
<a href="#">
<span class="white-text">
<h2>hello!</h2>
Welcome to RGUHack 2024! If you missed any of the opening presentation check out the <a href="https://github.com/RGUCode/Hack2024">opening presentations here</a>.
</span>
</a>
</div>
<div class="card-panel teal z-depth-2">
<a href="/challenges">
<span class="white-text">
<h2>/challenges</h2>
<p>See all the challenges and get some inspiration!</p>
</span>
</a>
</div>
<div class="card-panel blue z-depth-2">
<span class="white-text">
<h2>/social</h2>
<p>Tell everyone about the hack using #rguhack and you may well run a chance of one of our bonus challenge prizes!</p>
</span>
</div>
</div>
<div class="col s12 m6">
<div class="card-panel orange z-depth-2">
<a href="/hacktimer">
<span class="white-text">
<h2>/hacktimer</h2>
<p>The only timer you'll ever need...</p>
</span>
</a>
</div>
<div class="card-panel brown z-depth-2">
<a href="/static/code_of_conduct.pdf">
<span class="white-text">
<h2>/code of conduct</h2>
<p>Everyone must abide by the RGUHack Code of Conduct. RGUHack is a safe and inclusive event.</p>
</span>
</a>
</div>
<!-- <div class="card-panel yellow darken-3">
<a href="#">
<span class="white-text">
<h2>/workshops</h2>
<p>Learn something new and get some swag!</p>
</span>
</a>
</div> -->
<!-- <div class="card-panel deep-orange darken-4 z-depth-0">
<span class="white-text">
<h2>workshops!</h2>
</span>
<span class="black-text">
<ul class="collection">
<li class="collection-item"><b>Git Workshop</b> Code available at <a href="https://github.com/wildfireone/api-workshop">github.com/wildfireone/api-workshop</a></li>
<li class="collection-item"><b>AI Workshop</b> Code available at <a href="https://drive.google.com/drive/folders/1XYSVXTKJ8rLYvBMePBgGv-qbrav42rA7">drive.google.com/drive/folders/1XYSVXTKJ8rLYvBMePBgGv-qbrav42rA7</a></li>
</ul>
</span>
</div> -->
<div class="card-panel transparent z-depth-0">
<div class="row valign-wrapper">
<div class="col s2">
<img src="/images/id-lanyard.png" alt="" class="responsive-img">
</div>
<div class="col s10">
<span class="black-text">
<h2>Mentors, Help & Support</h2>
<p>Look out for mentors rocking their fabulous RGU lanyards!</p>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
{% include timetable.html %}
{% include faq.html %}
{% include sponsors.html %}
{% include contact.html %}