This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (57 loc) · 1.74 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
<!doctype html>
<html>
<head>
<title>IRS Software Projects</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<nav class="top-nav">
<div class="navbar">
<a href="https://www.irs.uni-stuttgart.de/" target="_blank"
><img src="images/unilogo_schriftzug_white.png" clas="navbar-logo"
/></a>
<p>Software Projects</p>
<a href="#" class="contact">Contact</a>
</div>
</nav>
<div class="container">
<div class="side-bar-container">
<ul class="side-bar">
<li id="home-click"><a href="index.html">Home</a></li>
<li id="fsfw-click"><a href="fsfw.html">FSFW</a></li>
<li id="sat-click"><a href="sat-rs.html">sat-rs</a></li>
<li id="sp-click"><a href="spacepackets.html">spacepackets</a></li>
</ul>
</div>
<div class="content">
<div id="sat-rs-content">
This is a collection of open-source software projects maintained by
the satellite division of the Institute of Space Systems at the
University of Stuttgart.
</div>
</div>
</div>
<footer class="footer">
<ul>
<li>
<a href="https://www.irs.uni-stuttgart.de/" target="_blank"
>IRS University of Stuttgart</a
>
</li>
<li>
<a href="https://www.uni-stuttgart.de/impressum" target="_blank"
>imprint</a
>
</li>
<li>
<a
href="https://info.irs.uni-stuttgart.de/datenschutz/datenschutzWebmit.html"
target="_blank"
>protection of privacy</a
>
</li>
<li>© 2023 Website by Nadine Eunous</li>
</ul>
</footer>
</body>
</html>