add floppies page; misc

Changed files
+39 -2
site
assets
styles
floppies
+1 -1
site/assets/styles/main.css
···
cursor: pointer;
}
-
summary::marker {
content: "↳ ";
font-weight: bold;
color: var(--accent-color-darkest);
···
cursor: pointer;
}
+
summary::marker, dd::before {
content: "↳ ";
font-weight: bold;
color: var(--accent-color-darkest);
+37
site/floppies/index.php
···
···
+
<?php
+
+
include "../httpheaders.php";
+
+
?>
+
+
<!DOCTYPE html>
+
<html lang="en">
+
+
<?php include "../head.php" ?>
+
+
<body>
+
+
<main>
+
<header>
+
<h1 class="highlight" id="floppies">floppies</h1>
+
</header>
+
+
<p>this page organizes my one-off, self-contained/standalone site pages that usually diverge from the site's design language. as of writing, it's mainly for pages created for events.</p>
+
+
<p>it's called <i>floppies</i> because i like comic books and in the world of comic books, individual paper issues are called floppies. they're kind of like one-offs, too!</p>
+
+
<section aria-labelledby="events">
+
<h2 id="events" class="highlight">events</h2>
+
+
<dl>
+
<dt><a href="https://bubblegum.girlonthemoon.xyz/articles/html-day-2025">HTML day 2025</a> (<time datetime="2025-08-02">august 2nd, 2025</time>)</dt>
+
<dd>
+
<a href="/ruru/index.html">in the orange light</a>: dedicated to <i>dambara ruru</i>
+
</dd>
+
</dl>
+
</section>
+
</main>
+
+
</body>
+
+
</html>
+1 -1
site/nav.php
···
echo "<span class='githashtag' aria-hidden='true'>#</span><a class='githashlink' href='$hashUrl'>$hash</a>";
?></p>
-
<p><span aria-hidden="true">🔗</span> <a href="docs.php">docs</a>, <a href="/vids">videos</a></p>
<p><span aria-hidden="true">🌐</span> <a href="https://bubblegum.girlonthemoon.xyz/">blog</a>, <a href="https://sakura.girlonthemoon.xyz">garden</a></p>
···
echo "<span class='githashtag' aria-hidden='true'>#</span><a class='githashlink' href='$hashUrl'>$hash</a>";
?></p>
+
<p><span aria-hidden="true">🔗</span> <a href="docs.php">docs</a>, <a href="/vids">videos</a>, <a href="/floppies">floppies</a></p>
<p><span aria-hidden="true">🌐</span> <a href="https://bubblegum.girlonthemoon.xyz/">blog</a>, <a href="https://sakura.girlonthemoon.xyz">garden</a></p>