forked from ros-infrastructure/robots.ros.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
155 lines (138 loc) · 5.42 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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
---
layout: minimal
---
<main class="home" id="post" role="main" itemprop="mainContentOfPage" itemscope="itemscope" itemtype="http://schema.org/Blog">
<p>
This is a site to showcase robots using ROS.
You can browse all, by <a href="{{ site.url }}{{site.baseurl}}/tags">tag</a> or <a href="{{ site.url }}{{site.baseurl}}/categories">category</a> as well as search.
If there's a robot you want to see here please <a href="{{ site.url }}{{site.baseurl}}/contributing">contribute</a> via a <a href="https://github.com/ros-infrastructure/robots.ros.org">pull request on github</a>.
</p>
<h2>Robot Video Montages</h2>
<div class="w3-content w3-display-container">
<div class="montages">
<iframe src="https://player.vimeo.com/video/245826128" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div class="montages">
<iframe src="https://player.vimeo.com/video/146183080" width="640" height="360" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div class="montages">
<iframe width="640" height="360" src="https://www.youtube-nocookie.com/embed/PGaXiLZD2KQ?rel=0" frameborder="0" allowfullscreen></iframe>
</div>
<div class="montages">
<iframe width="640" height="360" src="https://www.youtube-nocookie.com/embed/7cslPMzklVo?rel=0" frameborder="0" allowfullscreen></iframe>
</div>
<button class="w3-button w3-black w3-display-left" onclick="plusDivs(-1)">❮</button>
<button class="w3-button w3-black w3-display-right" onclick="plusDivs(1)">❯</button>
</div>
<script>
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("montages");
if (n > x.length) {slideIndex = 1}
if (n < 1) {slideIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex-1].style.display = "block";
}
</script>
{% if site.featured_robots.size >= 1 %}
{% if site.featured_robots.size > 1 %}
<h2>Featured Robots</H2>
{% else %}
<h2>Featured Robot</H2>
{% endif %}
<div class="w3-content w3-display-container">
{% for robot in site.featured_robots %}
{% for post in site.posts %}
{% if post.title == robot %}
<div class="features">
<div id="grid" class="row flex-grid feature-container">
{% include box-item.html %}
</div>
</div>
{% endif %}
{% endfor %}
{% endfor %}
{% if site.featured_robots.size > 1 %}
<button class="w3-button w3-black w3-display-left" onclick="plusDivs(-1); stopFeatures();">❮</button>
<button class="w3-button w3-black w3-display-right" onclick="plusDivs(1); stopFeatures();">❯</button>
{% endif %}
</div>
{% if site.featured_robots.size > 1 %}
<script>
var featureIndex = 1;
showFeatureDivs(featureIndex);
function plusDivs(n) {
showFeatureDivs(featureIndex += n);
}
function showFeatureDivs(n) {
var i;
var x = document.getElementsByClassName("features");
if (n > x.length) {featureIndex = 1}
if (n < 1) {featureIndex = x.length}
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[featureIndex-1].style.display = "block";
}
function incrementFeatures() {
plusDivs(1);
}
var intervalID = setInterval(incrementFeatures, 10000);
function stopFeatures() {
clearInterval(intervalID);
}
</script>
{% endif %}
{% endif %}
<a href="/tags"><H2>Find a robot by tag:</H2></a>
<div class="tags">
{% assign tags_list = site.tags | sort %}
{% if tags_list.first[0] == null %}
{% for tag in tags_list %}
<a href="/tags#{{ tag | slugify }}">{{ tag }}</a>
{% endfor %}
{% else %}
{% for tag in tags_list %}
<a href="/tags#{{ tag[0] | slugify }}">{{ tag[0] }}</a>
{% endfor %}
{% endif %}
{% assign tags_list = nil %}
</div>
<H2>Find a robot by category:</H2>
<div id="categories_grid" class="row flex-grid">
{% for category in site.top_level_categories %}
<article class="small-box-item post-{{category.url}}" itemscope="itemscope" itemtype="http://schema.org/BlogPosting" itemprop="blogPost">
<div class="small-box-body">
<a href="/category/{{ category.url | slugify }}"><h3>{{ category.title }}</h3>
{% if category.image %}
<img src="{{ site.url }}{{site.baseurl}}/assets/img/{{category.image}}"/>
{% endif %}
</a>
</div>
</article>
{% endfor %}
</div>
<H2>Recently Added</H2>
<div id="grid" class="row flex-grid">
{% assign dateSortedPosts = site.posts | sort: 'date' | reverse %}
{% for post in dateSortedPosts limit:2 %}
{% include box-item.html %}
{% endfor %}
</div>
<H2>All Entries (Random Order)</H2>
<a href="/all"><h3>Browse all in Alphabetical Order</h3></a>
<div id="grid" class="row flex-grid">
{% for post in site.posts %}
{% assign randomize = 'shuffle-order' %}
{% include box-item.html %}
{% endfor %}
{% include shuffle-items.html %}
</div>
</main>