forked from rosindex/rosindex
-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
81 lines (79 loc) · 2.57 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
---
layout: default
---
<div class="container-fluid" style="margin:20px">
<div class="row">
</div>
<div class="row">
<form id="searchbox" action="{{site.baseurl}}/search/" role="form">
<div class="input-group input-group-lg">
<input type="text" class="form-control" name="term" placeholder="Search ROS">
<span class="input-group-btn">
<button class="btn btn-default btn-lg" type="submit" title="Search ROS">
<span class="glyphicon glyphicon-search"></span>
</button>
<a href="https://lunrjs.com/guides/searching.html"
title="Help to Search" class="btn btn-default">
<span class="glyphicon glyphicon-question-sign"></span>
</a>
</span>
</div>
</form>
<script type="text/javascript">
$('#searchbox').submit(function() {
return $('#searchbox input:text').filter(function() {
return $(this).val() == "";
}).length == 0;
});
</script>
</div>
<hr>
<div class="row">
<h2>Welcome to ROS Index</h2>
<p>
ROS Index is the entry point for searching ROS and ROS 2 resources, including packages, repositories, system dependencies and documentation.
</p>
<p>
You can enter keywords and phrases in the search bar and then filter results by resource type, or you can browse the complete package, repository and system dependency lists under the <b>Index</b> tab.
</p>
<p>
New to ROS Index? Be sure to follow our
<a href=https://index.ros.org/about/tutorial>Tutorial</a>
To learn more about the process of searching for packages
</p>
</div>
<hr>
<div class="row">
<h2>Active Distributions</h2>
<p>
<a href="https://wiki.ros.org/noetic">ROS Noetic</a>
</p>
<p>
<a href="https://docs.ros.org/en/humble/Releases/Release-Humble-Hawksbill.html">ROS 2 Humble</a>
</p>
<p>
<a href="https://docs.ros.org/en/iron/Releases/Release-Iron-Irwini.html">ROS 2 Iron</a>
</p>
<p>
<a href="https://docs.ros.org/en/jazzy/Releases/Release-Jazzy-Jalisco.html">ROS 2 Jazzy</a>
</p>
<h2>Development Distribution</h2>
<p>
<a href="http://docs.ros.org/en/rolling/Releases/Release-Rolling-Ridley.html">ROS 2 Rolling</a>
</p>
</div>
<hr>
<div class="row">
<h2>More resources</h2>
<p>
<a href="https://discourse.ros.org/">ROS Discourse</a>
</p>
<p>
<a href="https://robotics.stackexchange.com/">Robotics Stack Exchange</a>
</p>
<p>
<a href="https://www.ros.org/">ros.org</a>
</p>
</div>
</div>