forked from curtinrobotics/curtinrobotics.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.86 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
---
layout: default
title: Home
---
<div class="row">
<div class="col-md-9 col-sm-8 col-xs-12">
Curtin Robotics Club (CRoC) is a club for people who love to create and build electronic projects. We as a club build robots, participate in robotics competitions, teach high school students to build a robot with Engineering Outreach, and much more. Our objective is to create a club and a fun environment for students who share the same interest.
</div>
<!-- <div class="col-md-3 col-sm-4 col-xs-12">
<div class="panel panel-inverse">
<div class="panel-heading">Site Navigation</div>
<div class="list-group">
{% for p in site.pages %}
{% if p.title and p.title != 'Home' and p.title != '404 Page' %}
<a href="{{p.url | remove: '.html'}}" class="list-group-item">{{p.title}}</a>
{% endif %}
{% endfor %}
</div>
</div>
</div> -->
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="well">
<div id="slides" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
{% for image in site.data.images %}
<li data-target="#slides" data-slide-to="{{ forloop.index | minus: 1 }}" {% if image.active %}class="active"{% endif %}></li>
{% endfor %}
</ol>
<div class="carousel-inner" role="listbox" style="max-height: 500px;">
{% for image in site.data.images %}
<div class="item {% if image.active %}active{% endif %}">
<img {% if image.style %}style="{{ image.style }}"{% endif %} src="{{ image.url }}" alt="{{ image.title }}"/>
</div>
{% endfor %}
</div>
<a class="left carousel-control" href="#slides" role="button" data-slide="prev"><i class="glyphicon glyphicon-chevron-left"></i></a>
<a class="right carousel-control" href="#slides" role="button" data-slide="next"><i class="glyphicon glyphicon-chevron-right"></i></a>
</div>
</div>
</div>
</div>