-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbender-gallery.html
115 lines (90 loc) · 4.03 KB
/
bender-gallery.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
---
# this is an empty front matter
---
<html lang="en">
<!-- head -->
{% include head.html title="Gallery - UChile Homebreakers" %}
<link rel="stylesheet" href="vendor/Gallery-master/css/blueimp-gallery.min.css">
<style>
#links a img {
max-width: 200px;
max-height: 200px;
min-height: 200px;
min-width: 150px;
cursor: zoom-in;
}
</style>
<body>
<!-- The Gallery as lightbox dialog, should be a child element of the document body -->
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol>
</div>
<!-- Navigation -->
{% include navigation.html %}
<!-- Page Header -->
{% include header_img.html image="static/img/bender/team-bg.jpg" title="UChile Homebreakers Team" subtitle="" meta="Gallery" %}
<!-- Sub Nav Bar -->
{% include bender-navbar.html %}
<!-- Main Content -->
<article>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h2>Robocup @HOME</h2>
<div class="row">
<div class="col-sm-12 col-md-6">
<iframe width="460" height="264" src="https://www.youtube.com/embed/Xj5T6HZuxR0" frameborder="0" allowfullscreen></iframe>
<blockquote>Qualification Video Robocup 2017</blockquote>
</div>
<div class="col-sm-12 col-md-6">
<iframe width="460" height="264" src="https://www.youtube.com/embed/8LR7KWLdYBM" frameborder="0" allowfullscreen></iframe>
<blockquote>Qualification Video Robocup 2015</blockquote>
</div>
<div class="col-sm-12 col-md-6">
<iframe width="460" height="264" src="https://www.youtube.com/embed/4lE6ILFWi6w" frameborder="0" allowfullscreen></iframe>
<blockquote>Qualification Video Robocup 2014</blockquote>
</div>
</div>
<h2>Bender Skills</h2>
<div class="row">
<div class="col-sm-12 col-md-6">
<iframe width="460" height="264" src="https://www.youtube.com/embed/NEKo1SXj40s" frameborder="0" allowfullscreen></iframe>
<blockquote>Bender Abilities - Facial Expression</blockquote>
</div>
<div class="col-sm-12 col-md-6">
<iframe width="460" height="264" src="https://www.youtube.com/embed/vcKg9_-6Oig" frameborder="0" allowfullscreen></iframe>
<blockquote>Bender Abilities - Speech Recognition</blockquote>
</div>
<div class="col-sm-12 col-md-6">
<iframe width="460" height="264" src="https://www.youtube.com/embed/Nob3qyA3N5I" frameborder="0" allowfullscreen></iframe>
<blockquote>Bender Abilities - Follow Person</blockquote>
</div>
</div>
</div>
</div>
</div>
</article>
<hr>
<!-- Footer -->
{% include footer.html %}
<!-- bottom imports -->
{% include bottom.html %}
<script src="vendor/Gallery-master/js/blueimp-gallery.min.js"></script>
<script>
document.getElementById('links').onclick = function (event) {
event = event || window.event;
var target = event.target || event.srcElement,
link = target.src ? target.parentNode : target,
options = {index: link, event: event},
links = this.getElementsByTagName('a');
blueimp.Gallery(links, options);
};
</script>
</body>
</html>