forked from srobo/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
64 lines (64 loc) · 2.09 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
---
layout: page
title: About
permalink: /about/
---
<div class="panel panel-header panel-boxes">
<div class="panel-container">
<div class="hero-text no-cta fixed-width">
<h1>Our goal is to inspire the next generation of engineers</h1>
</div>
</div>
</div>
<div class="panel">
<div class="panel-container">
<div class="fixed-width text-center">
<h2>What we do</h2>
<div class="row">
<div class="column m-8-12 m-offset-2-12">
<p>
We challenge teams of 16 to 18 year-olds to design, build and develop
autonomous robots to compete in our annual competition. After announcing
the year's game, we give teams six months to engineer their creations.
We mentor teams throughout this time, as well as supply them with a kit
which provides a framework they can build their robot around. Thanks to
our sponsors, we provide this all for free to our teams.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="panel">
<div class="panel-container">
<div class="fixed-width text-center">
<h2>Our sponsors</h2>
<p>
Student Robotics couldn't do what we do without the support of our
fantastic sponsors.
</p>
<div class="row">
<div class="column m-8-12 m-offset-2-12">
<div class="row">
{% for sponsor in site.sponsors %}
<div class="column m-6-12">
<a href="{{ sponsor.link }}">
<img src="{{ sponsor.image | prepend: site.baseurl }}" alt="{{ sponsor.name }}"/>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</div>
</div>
<div class="panel">
<div class="panel-container">
<div class="fixed-width text-center">
<h2>Want to get involved?</h2>
<a class="button button-primary" href="{{ '/compete' | prepend: site.baseurl }}">I'd like to compete</a>
<a class="button button-primary" href="{{ '/volunteer' | prepend: site.baseurl }}">I'd like to volunteer</a>
</div>
</div>
</div>