forked from RevolutionUC/revolutionuc-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (56 loc) · 3.12 KB
/
index.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
---
layout: homepage
title: Home
---
<main>
<a id="main" name="main"></a>
<div class="container container--large">
<section class="flex">
<div class="image">
<img src="/img/photo1.jpg" alt="Photo taken at RevolutionUC">
</div>
<div class="text">
<p><strong>RevolutionUC</strong> is a 24-hour student hackathon at the University of Cincinnati that is organized by <a href="http://acmatuc.org/" target="_blank">ACM@UC</a>. We invite you to join 300+ motivated students for an awesome weekend of code, community, and self-improvement! You don’t have to have to be a computer science major or engineering student to attend. It’s a learning experience for students of all skill levels!</p>
</div>
</section>
<section class="flex flex--reverse-small section--no-padding-top">
<div class="text">
<p class="text-right">A <strong>hackathon</strong> is an event where people get together, form teams, build something new to solve a problem, and have fun doing it! Some project ideas include websites, mobile apps, robots, and more! A hackathon is an all-inclusive environment, you’ll learn something new and meet people who are passionate about technology.</p>
</div>
<div class="image">
<img src="/img/photo2.jpg" alt="Photo taken at RevolutionUC">
</div>
</section>
</div>
<section class="background-purple">
<div class="call-to-action container">
<p class="lead text-center">RevolutionUC is free and open to all students.</p>
<div class="text-center">
<a class="btn btn--tertiary" href="/register">Join Waitlist</a>
<a class="btn btn--secondary" href="/faq">See FAQ</a>
</div>
</div>
</section>
<section>
<div class="container container--small">
<p class="text-center">RevolutionUC has been a leader in the Cincinnati hacker community since 2014. Check out submissions from previous hackathons.</p>
<div class="past-hacks">
{% for hack in site.data.past-hacks reversed %}
<div class="hack hack--{{ hack.time | replace: ' ','-' }}">
<div class="hack__image">
<a href="{{ hack.link }}" target="_blank">
<img class="past__hacks__image" src="{{ hack.image }}" alt="{{ hack.name }} logo">
<div class="hack__text">{{ hack.time }}</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="background-purple-light">
<div class="container call-to-action">
<p class="lead text-center">Interested in sponsoring RevolutionUC? It's a great way to connect with talented and motivated students! Send us an email at <a href="mailto:[email protected]">[email protected]</a> for information.</p>
</div>
</section>
</main>