This repository was archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathold-index.html
More file actions
50 lines (43 loc) · 2.5 KB
/
Copy pathold-index.html
File metadata and controls
50 lines (43 loc) · 2.5 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
---
layout: homepage
title: Home
description: RevolutionUC Live Site
---
<main>
<a id="main" name="main"></a>
<div class="container container--large">
<section class="flex">
<div class="image">
<img src="https://assets.revolutionuc.com/website-images/2020/home/home-1-1x.png" 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="https://assets.revolutionuc.com/website-images/2020/home/home-2-1x.png" alt="Photo taken at RevolutionUC">
</div>
</section>
</div>
<section>
<div class="container container--small call-to-action">
<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>
</main>