forked from space-station-os/space-station-os.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
56 lines (53 loc) · 2.36 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs - 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">Packages</a></li>
<li><a href="concepts.html">Concepts</a></li>
<li><a href="troubleshooting.html">Troubleshooting</a></li>
<li><a href="blogs.html" class="active">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>Blogs</h2>
<p>Stay updated with the latest developments, tutorials, and insights from the Space Station OS community. Explore our curated blog posts to learn more about ongoing projects, best practices, and tips for using Space Station OS effectively.</p>
<p>Blog content will be added soon. Check back for updates!</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>