-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 3.19 KB
/
index.html
File metadata and controls
67 lines (63 loc) · 3.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
layout: default
title: Home
carousel: true
math: true
code: true
---
<div class="row section">
<div class="col-lg-9">
<div id="slideshowCarousel" class="carousel slide">
<ol class="carousel-indicators">
{% for image in site.carousel.images %}
<li data-target="#slideshowCarousel" data-slide-to="{{ forloop.index0 }}"{% if forloop.first %} class="active"{% endif %}></li>
{% endfor %}
</ol>
<div class="carousel-inner">
{% for image in site.carousel.images %}
<div class="item{% if forloop.first %} active{% endif %} container">
<img src="{{ site.relative }}{{ image.url }}" class="img-responsive" alt="{{ image.caption }}">
<div class="container">
<div class="carousel-caption">
<p>{{ image.caption }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
<a class="left carousel-control" href="#slideshowCarousel" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a>
<a class="right carousel-control" href="#slideshowCarousel" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<div class="col-lg-3 call-to-action">
<h2>Want to be awesome?</h2>
<p>Join DUBotics! No prior experience necessary -- we'll teach you
everything you need to know.
</p>
{% include meeting-times.html %}
<p><a class="btn btn-lg btn-primary" href="{{ site.relative }}/teams.html">More info! »</a> <a class="btn btn-lg btn-primary" href="{{ site.relative }}/sponsors.html">Sponsor us! »</a></p>
</div>
</div>
<!-- Segments with more info -->
<div class="row">
<div class="col-md-6">
{% assign post = site.posts.first %}
<h2>Recent news: <a href="{{ site.relative }}{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
<p><a href="{{ site.relative }}{{ post.url }}">(Read more »)</a></p>
</div>
<div class="col-md-6">
<h2>About us</h2>
<p>DUBotics is a multi-disciplinary engineering group that draws students from the
<a href="http://www.washington.edu">University of Washington</a> to participate in constructing
robots for several international competitions. Most recently, the team has been
participating in the <a href="http://urc.marssociety.org/">University Rover Challenge</a>
and has to date competed in one year of the competition, submitting our first entry:
The Cerberus Rover.</p>
<p>The team is divided into different subgroups that have work delegated to
them by their individual group leaders, all of which are overseen by the team
leaders. Currently, anyone regardless of major or intended major is open to join
the team as most of the skills needed to participate can be learned on site.</p>
<p><a href="{{ site.relative }}/about.html">(Read more »)</a></p>
</div>
</div>