-
Notifications
You must be signed in to change notification settings - Fork 1
/
packages.html
55 lines (52 loc) · 2.2 KB
/
packages.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Packages - Space Station OS Documentation</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js" defer></script>
</head>
<body>
<header class="top-nav">
<div class="nav-header">
<img src="assets/logo/SSOS_LogoMark_TextSide_White_BGBlack.png" alt="Space Station OS Logo" class="logo">
<h1>Space Station OS</h1>
</div>
</header>
<div class="container">
<aside class="sidebar">
<h2>Documentation</h2>
<ul>
<!-- Old Subpages -->
<li>
<a href="#" class="expandable open">Getting Started <span class="icon">-</span></a>
<ul class="nested visible">
<li><a href="requirements.html">Requirements</a></li>
<li><a href="setup.html">Setup</a></li>
</ul>
</li>
<li><a href="demos.html">Demos</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="todos.html">TODOs</a></li>
<!-- New Subpages -->
<li><a href="packages.html" class="active">Packages</a></li>
<li><a href="concepts.html">Concepts</a></li>
<li><a href="troubleshooting.html">Troubleshooting</a></li>
<li><a href="blogs.html">Blogs</a></li>
<li><a href="release_notes.html">Release Notes</a></li>
<li><a href="faq.html">Frequently Asked Questions</a></li>
<li><a href="about.html">About</a></li>
</ul>
</aside>
<main class="content">
<h2>Packages</h2>
<p>Details about Space Station OS packages will be added here. These include package descriptions, functionalities, and installation instructions.</p>
</main>
</div>
<footer>
<p>Contact us at <a href="mailto:[email protected]">[email protected]</a></p>
<p>© 2024 Space Station OS. Built with GitHub Pages.</p>
</footer>
</body>
</html>