prettier
This commit is contained in:
parent
772dd65297
commit
f322617548
183
index.html
183
index.html
@ -1,79 +1,118 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>IRS Software Projects</title>
|
||||||
|
<link rel="stylesheet" href="index.css" />
|
||||||
|
<script src="index.js" defer></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
<head>
|
<body>
|
||||||
<title>IRS Software Projects</title>
|
<nav class="top-nav">
|
||||||
<link rel="stylesheet" href="index.css" />
|
<div class="navbar">
|
||||||
<script src="index.js" defer></script>
|
<img src="images/unilogo_schriftzug_white.png" clas="navbar-logo" />
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<p>Software Projects</p>
|
||||||
<nav class="top-nav">
|
<a href="#" class="contact">Contact</a>
|
||||||
<div class="navbar">
|
</div>
|
||||||
<img src="images/unilogo_schriftzug_white.png" clas="navbar-logo" />
|
</nav>
|
||||||
|
<div class="container">
|
||||||
|
<div class="side-bar-container">
|
||||||
|
<ul class="side-bar">
|
||||||
|
<li id="fsfw-click"><a href="index.html">FSFW</a></li>
|
||||||
|
<li id="sat-click"><a href="sat-rs.html">sat-rs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
|
<div id="sat-rs-content">
|
||||||
|
<div class="img-container">
|
||||||
|
<img class="logo" src="images/FSFW_Logo_V3_bw.png" />
|
||||||
|
</div>
|
||||||
|
<p class="fsfw-desc">
|
||||||
|
The Flight Software Framework is a C++ Object Oriented Framework for
|
||||||
|
unmanned, automated systems like Satellites. It has flight heritage
|
||||||
|
through the 2 missions
|
||||||
|
<a
|
||||||
|
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/flying-laptop/"
|
||||||
|
target="_blank"
|
||||||
|
>FLP</a
|
||||||
|
>
|
||||||
|
and
|
||||||
|
<a
|
||||||
|
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/EIVE/"
|
||||||
|
target="_blank"
|
||||||
|
>EIVE</a
|
||||||
|
>.
|
||||||
|
</p>
|
||||||
|
|
||||||
<p>Software Projects</p>
|
<h1>Documentation and Coverage</h1>
|
||||||
<a href="#" class="contact">Contact</a>
|
<div id="fsfw-links">
|
||||||
|
<div class="develop">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/development/"
|
||||||
|
target="_blank"
|
||||||
|
>DEVELOP</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/development/"
|
||||||
|
target="_blank"
|
||||||
|
>→ COVERAGE</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="master">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/master/"
|
||||||
|
target="_blank"
|
||||||
|
>MASTER</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/master/"
|
||||||
|
target="_blank"
|
||||||
|
>→ COVERAGE</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<h1>Repository</h1>
|
||||||
|
<div class="repo-container">
|
||||||
|
<p>
|
||||||
|
<a
|
||||||
|
href="https://egit.irs.uni-stuttgart.de/fsfw/fsfw"
|
||||||
|
target="_blank"
|
||||||
|
class="repo"
|
||||||
|
>REPOSITORY</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
<footer class="footer">
|
||||||
<div class="container">
|
<ul>
|
||||||
<div class="side-bar-container">
|
<li>
|
||||||
<ul class="side-bar">
|
<a href="https://www.uni-stuttgart.de/impressum" target="_blank"
|
||||||
<li id="fsfw-click"><a href="index.html">FSFW</a></li>
|
>imprint</a
|
||||||
<li id="sat-click"><a href="sat-rs.html">sat-rs</a></li>
|
>
|
||||||
|
</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>
|
</ul>
|
||||||
</div>
|
</footer>
|
||||||
<div class="content">
|
</body>
|
||||||
<div id="sat-rs-content">
|
|
||||||
<div class="img-container">
|
|
||||||
<img class="logo" src="images/FSFW_Logo_V3_bw.png" />
|
|
||||||
</div>
|
|
||||||
<p class="fsfw-desc">
|
|
||||||
The Flight Software Framework is a C++ Object Oriented Framework for unmanned, automated systems like
|
|
||||||
Satellites. It has flight heritage through the 2 missions <a
|
|
||||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/flying-laptop/"
|
|
||||||
target="_blank">FLP</a>
|
|
||||||
and <a
|
|
||||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/EIVE/"
|
|
||||||
target="_blank">EIVE</a>.
|
|
||||||
<h1>Documentation and Coverage</h1>
|
|
||||||
<div id="fsfw-links">
|
|
||||||
</h1>
|
|
||||||
<div class="develop">
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/development/" target="_blank">DEVELOP</a></li>
|
|
||||||
<li><a href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/development/" target="_blank">→
|
|
||||||
COVERAGE</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="master">
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/master/" target="_blank">MASTER</a></li>
|
|
||||||
<li><a href="https://documentation.irs.uni-stuttgart.de/projects/fsfw/coverage/master/" target="_blank">→ COVERAGE</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<h1>Repository</h1>
|
|
||||||
<div class="repo-container">
|
|
||||||
<p><a href="https://egit.irs.uni-stuttgart.de/fsfw/fsfw" target="_blank" class="repo">REPOSITORY</a></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<footer class="footer">
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<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>
|
</html>
|
||||||
|
174
sat-rs.html
174
sat-rs.html
@ -1,91 +1,103 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html>
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>IRS Software Projects</title>
|
||||||
|
<link rel="stylesheet" href="index.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
<head>
|
<body>
|
||||||
<title>IRS Software Projects</title>
|
<nav class="top-nav">
|
||||||
<link rel="stylesheet" href="index.css"/>
|
<div class="navbar">
|
||||||
</head>
|
<img src="images/unilogo_schriftzug_white.png" clas="navbar-logo" />
|
||||||
|
|
||||||
<body>
|
<p>Software Projects</p>
|
||||||
<nav class="top-nav">
|
<a href="#" class="contact">Contact</a>
|
||||||
<div class="navbar">
|
</div>
|
||||||
<img src="images/unilogo_schriftzug_white.png" clas="navbar-logo" />
|
</nav>
|
||||||
|
<div class="container">
|
||||||
|
<div class="side-bar-container">
|
||||||
|
<ul class="side-bar">
|
||||||
|
<li id="fsfw-click"><a href="index.html">FSFW</a></li>
|
||||||
|
<li id="sat-click"><a href="sat-rs.html">sat-rs</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p>Software Projects</p>
|
<div class="content">
|
||||||
<a href="#" class="contact">Contact</a>
|
<div id="sat-rs-content">
|
||||||
</div>
|
<img class="logo" src="images/sat-rs_logo.png" />
|
||||||
</nav>
|
<p class="sat-rs-desc">
|
||||||
<div class="container">
|
sat-rs is a framework with the primary goal to provide re-usable
|
||||||
<div class="side-bar-container">
|
components to write on-board software for remote systems like rovers
|
||||||
<ul class="side-bar">
|
or satellites. It is specifically written for the special
|
||||||
<li id="fsfw-click"><a href="index.html">FSFW</a></li>
|
requirements for these systems. A lot of the architecture and
|
||||||
<li id="sat-click"><a href="sat-rs.html">sat-rs</a></li>
|
general design considerations are based on the
|
||||||
</ul>
|
<a href="index.html">FSFW</a>
|
||||||
</div>
|
C++ framework which has flight heritage through the 2 missions
|
||||||
|
<a
|
||||||
<div class="content">
|
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/flying-laptop/"
|
||||||
<div id="sat-rs-content">
|
target="_blank"
|
||||||
|
>FLP</a
|
||||||
<img class="logo" src="images/sat-rs_logo.png" />
|
>
|
||||||
<p class="sat-rs-desc">sat-rs is a framework with the primary goal to provide re-usable components
|
and
|
||||||
to write on-board software for remote systems like rovers or satellites. It is specifically written for the
|
<a
|
||||||
special requirements for these systems.
|
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/EIVE/"
|
||||||
A lot of the architecture and general design considerations are based on the
|
target="_blank"
|
||||||
<a href="index.html">FSFW</a>
|
>EIVE</a
|
||||||
C++ framework which has flight heritage through the 2 missions <a
|
>.
|
||||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/flying-laptop/"
|
</p>
|
||||||
target="_blank">FLP</a>
|
<h1>Documentation</h1>
|
||||||
and <a
|
<div id="fsfw-links">
|
||||||
href="https://www.irs.uni-stuttgart.de/en/research/satellitetechnology-and-instruments/smallsatelliteprogram/EIVE/"
|
<div class="develop">
|
||||||
target="_blank">EIVE</a>.
|
<ul>
|
||||||
</p>
|
<li><a href="/projects/sat-rs" target="_blank">BOOK</a></li>
|
||||||
<h1>Documentation </h1>
|
</ul>
|
||||||
<div id="fsfw-links">
|
</div>
|
||||||
</h1>
|
<div class="master">
|
||||||
<div class="develop">
|
<ul>
|
||||||
|
<li><a href="https://docs.rs/satrs-core">CORE API</a></li>
|
||||||
<ul>
|
</ul>
|
||||||
<li><a href="/projects/sat-rs" target="_blank">BOOK</a></li>
|
</div>
|
||||||
</ul>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="master">
|
<h1>Repository</h1>
|
||||||
<ul>
|
<div id="fsfw-links">
|
||||||
<li><a href="https://docs.rs/satrs-core">CORE API</a></li>
|
<div class="develop">
|
||||||
</ul>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://egit.irs.uni-stuttgart.de/rust/sat-rs"
|
||||||
|
target="_blank"
|
||||||
|
>GITEA</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="master">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/us-irs/sat-rs">GITHUB (MIRROR)</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
<h1>Repository</h1>
|
|
||||||
<div id="fsfw-links">
|
|
||||||
</h1>
|
|
||||||
<div class="develop">
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://egit.irs.uni-stuttgart.de/rust/sat-rs" target="_blank">GITEA</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="master">
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://github.com/us-irs/sat-rs">GITHUB (MIRROR)</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<footer class="footer">
|
||||||
<footer class="footer">
|
<ul>
|
||||||
|
<li>
|
||||||
<ul>
|
<a href="https://www.uni-stuttgart.de/impressum" target="_blank"
|
||||||
<li><a href="https://www.uni-stuttgart.de/impressum" target="_blank">imprint</a></li>
|
>imprint</a
|
||||||
<li><a href="https://info.irs.uni-stuttgart.de/datenschutz/datenschutzWebmit.html" target="_blank">protection of
|
>
|
||||||
privacy</a></li>
|
</li>
|
||||||
<li>© 2023 Website by Nadine Eunous</li>
|
<li>
|
||||||
</ul>
|
<a
|
||||||
|
href="https://info.irs.uni-stuttgart.de/datenschutz/datenschutzWebmit.html"
|
||||||
</footer>
|
target="_blank"
|
||||||
</body>
|
>protection of privacy</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>© 2023 Website by Nadine Eunous</li>
|
||||||
|
</ul>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Reference in New Issue
Block a user