chore: restructure site

This commit is contained in:
Rudra Saraswat 2025-12-13 01:49:30 +00:00
parent acdb3689d7
commit c3e9c53a81
80 changed files with 34 additions and 53 deletions

73
site/pages/notes.html Normal file
View file

@ -0,0 +1,73 @@
<!DOCTYPE html>
<html>
<head>
<title>home - ruds.io</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/98.css">
<link rel="stylesheet" href="/site/global.css">
</head>
<body>
<div class="header">
<h1>hello there, kind stranger \o/</h1>
</div>
<div class="container">
<div class="box-lp subcontainer">
<div class="window active">
<div class="title-bar">
<div class="title-bar-text">pages</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body has-space">
<ul>
<li><a href="/site/">home</a></li>
<li><a href="/site/pages/notes.html">notes</a></li>
<li><a href="/site/pages/credits.html">credits</a></li>
</ul>
</div>
</div>
</div>
<div class="box-content subcontainer">
<div class="window active">
<div class="title-bar">
<div class="title-bar-text">credits</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body has-space">
<p>This page is presently empty; enjoy the quiet while it lasts.</p>
</div>
</div>
</div>
<div class="box-rp">
<div class="window active">
<div class="title-bar">
<div class="title-bar-text">blog</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body has-space">
<ul id="posts_list"></ul>
</div>
</div>
</div>
</div>
<script src="/site/posts.js"></script>
</body>
</html>