-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
125 lines (118 loc) · 4.33 KB
/
about.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
---
layout: main
title: About Us
page: about
---
<div id="about-info" class="section">
<div class="wrap">
<div class="text-boundary">
<h3><span>Who are we?</span></h3>
<p class="intro">
We are Melbourne's premier student hackathon - run for students, by students.
</p>
<p>
Inspired by the student hackathons in the United States and Europe, UNIHACK was created in 2014
by WIRED Monash. Since the very first competition at York Butter Factory, UNIHACK has quickly
become one of the go-to hackathons for university students nationwide.
</p>
<p>
The main purpose of UNIHACK is to showcase the best and talented students currently residing in our
universities — the very people who will become the next generation of developers, thinkers, and
startup entrepreneurs.
</p>
<p>
Teams have 24 hours to design and build something awesome. It can be anything - a website, a mobile
application, a video game, or even something hardware. The important thing is that it needs to work
when it is presented to the judges.
</p>
<p>
Whether you are an avid programmer or a first-timer, UNIHACK welcomes all types of "hackers"
regardless of skill level.
</p>
<p>
UNIHACK is organised by WIRED Monash, the IT student society at Monash University Clayton.
</p>
</div>
</div>
</div>
<div id="about-wired" class="section">
<div class="wrap">
<div class="text-boundary">
<h3><span>WIRED Monash</span></h3>
<p class="intro">
WIRED Monash is the student society for IT students and those who are curious about all things
digital at Monash University Clayton.
</p>
<p>
We aim to provide a relaxed, social atmosphere where students can meet others who share their
love for everything digital. Our community is one where we can share our opinions on the latest
technology, and collaborate on projects and competitions. WIRED Monash is a registered academic
club with Monash Clubs and Societies.
</p>
<p class="btn-center">
<a href="http://wired.org.au" class="btn">Find out more...</a>
</p>
</div>
</div>
</div>
<div id="about-team" class="section">
<div class="wrap">
<h3><span>The Team</span></h3>
{% for team in site.data.team %}
{% if team.group != "Executive" %}
<h4>{{ team.group }}</h4>
{% endif %}
<div class="row">
{% for person in team.members %}
<div class="team">
{% if person.img %}
<img src="{{ person.img }}" alt="{{ person.name }}" class="img-rounded" />
{% endif %}
<p class="name">{{ person.name }}</p>
<p class="role">{{ person.position }}</p>
<p class="subrole">{{ person.subposition }}</p>
<p class="social">
{% if person.twitter %}
<a href="http://twitter.com/{{ person.twitter }}">
<i class="fa fa-twitter"></i>
</a>
{% endif %}
{% if person.linkedin %}
<a href="{{ person.linkedin }}">
<i class="fa fa-linkedin"></i>
</a>
{% endif %}
</p>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
{% include diversity-commitment.html %}
<div id="about-contact" class="section">
<div class="wrap">
<div class="text-boundary">
<h3><span>Contact Us</span></h3>
<p class="intro">
Got a question, need something clarified or just want to get in touch?
Here is how you can do that.
</p>
<p class="contact-details">
<span><i class="fa fa-envelope"></i> Email</span>
<script type="text/javascript">
document.write("<a href=\"mail" + "to:" + new Array("team","unihack.net").join("@") + "\">" + new Array("team","unihack.net").join("@") + "</" + "a>");
</script>
</p>
<p class="contact-details">
<span><i class="fa fa-twitter"></i> Twitter</span>
<a href="http://twitter.com/unihackmelb">@UNIHACKMelb</a>
</p>
<p class="contact-details">
<span><i class="fa fa-facebook"></i> Facebook</span>
<a href="http://facebook.com/unihackmelb">UNIHACK Melbourne</a><br/>
<a href="http://facebook.com/groups/unihackers">UNIHACKers</a>
</p>
</div>
</div>
</div>