forked from ifm/developerportal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu.html
89 lines (66 loc) · 2.74 KB
/
ubuntu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer's portal</title>
<script src="jquery/jquery-3.4.1.min.js"></script>
<script>
$(function() {
// $("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
<link rel="stylesheet" href="ifmr_devportal.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Cookie" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="readme.css">
<link rel="stylesheet" href="footerstyle.css">
</head>
<body>
<div class="container">
<div id="orangebar"> </div>
<div class="ifmdevportal-banner-responsive-bg-image" style="padding-bottom: 30px;">
<div class="masthead">
<a href="index.html"><img id="mastheadlogo" src="assets/ifm-white-circle.svg" alt="ifm logo"></a><br> O3 Developer's Portal</div>
<nav>
<ul class="pagemenu">
<li><a href="index.html">Home</a></li>
<li><a href="#">Unboxing</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Extension Tools</a></li>
<li><a href="#">Docs</a></li>
</ul>
</nav>
</div>
<div class="section ospicker">
<h1>Official Downloads of O3 software</h1>
<a href="ubuntu.html">Ubuntu Linux</a><a class href="tegra.html">Linux for Tegra</a><a class href="windows.html">Windows</a><a class href="ros.html">ROS</a><a class href="source-install.html">Compile from source</a><a class href="matrix.html">Compatibility Matrix</a>
<div style="height: 30px;"> </div>
<div id="hideme" style="display: none;"></div>
<div id="readme"></div>
</div>
<div id="footer"></div>
</div>
<script src="jquery/jquery.gh-readme.min.js"></script>
<script>
$(function() {
var options = {
owner: 'ifm',
repo: 'ifm3d'
};
$('#hideme').readme(options);
setTimeout(showtext, 300);
});
function showtext() {
var parts, mycode, n, m, mypart;
parts = $('#hideme').html();
mycode = parts.split('<h2');
m = mycode[4].indexOf("ubuntu-linux-via-apt-amd64-arm64-");
n = mycode[4].indexOf("linux-for-tegra");
mypart = mycode[4].slice(m, n);
$('#readme').html('<h2 ' + mypart);
}
</script>
</body>
</html>