-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
108 lines (90 loc) · 4.59 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
---
# this is an empty front matter
---
<html lang="en">
<!-- head -->
{% include head.html title="About Us - UChile Robotics" %}
<body>
<!-- Navigation -->
{% include navigation.html %}
<!-- Page Header -->
{% include header_img.html image="static/img/about-bg.jpg" title="About Us" subtitle="" meta="" %}
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<p>
The UChileHomebreakers Robotics Team is currently working on 3 robots: Bender, Pepper and Jaime. All teams work at the Robotics Laboratory of the Electrical Engineering Department of the University
of Chile, and are supported by the Advance Mining Technology Center (AMTC).
</p>
<p>
UChile Robotics is lead by Dr. Javier Ruiz del Solar.
</p>
<!--<br>-->
<!--<h3>History</h3>-->
<!--<p>-->
<!--Our laboratory also held teams for the ...-->
<!--</p>-->
<!-- Slider-->
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel" style="background: transparent">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
<li data-target="#carousel-example-generic" data-slide-to="4"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="static/img/bender/gallery/IMGP3616.JPG" alt="" style="max-height: 400px; margin: 0 auto;">
<!--<div class="carousel-caption">-->
<!--</div>-->
</div>
<div class="item">
<img src="static/img/bender/team/team2016.jpg" alt="" style="max-height: 400px; margin: 0 auto;">
<!--<div class="carousel-caption">-->
<!--</div>-->
</div>
<div class="item">
<img src="static/img/bender/team/team2.jpg" alt="" style="max-height: 400px; margin: 0 auto;">
<!--<div class="carousel-caption">-->
<!--...-->
<!--</div>-->
</div>
<div class="item">
<img src="static/img/bender/team/team.jpg" alt="" style="max-height: 400px; margin: 0 auto;">
<!--<div class="carousel-caption">-->
<!--...-->
<!--</div>-->
</div>
<div class="item">
<img src="static/img/bender/team/ptmontt.jpg" alt="" style="max-height: 400px; margin: 0 auto;">
<!--<div class="carousel-caption">-->
<!--...-->
<!--</div>-->
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev" style="background: transparent">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next" style="background: transparent">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<blockquote>
UChile Homebreakers Team
</blockquote>
</div>
</div>
</div>
<hr>
<!-- Footer -->
{% include footer.html %}
<!-- bottom imports -->
{% include bottom.html %}
</body>
</html>