]> Skullheadx's Git Forge - skullheadx.com.git/commitdiff
nowpage
authorSkullheadx <admonty1@protonmail.com>
Thu, 7 May 2026 03:34:34 +0000 (23:34 -0400)
committerSkullheadx <admonty1@protonmail.com>
Thu, 7 May 2026 03:34:34 +0000 (23:34 -0400)
now.html [new file with mode: 0644]
style.css

diff --git a/now.html b/now.html
new file mode 100644 (file)
index 0000000..e9ddd8b
--- /dev/null
+++ b/now.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <meta charset="UTF-8">
+        <title>Now Skullhead</title>
+        <meta name="description" content="Now page to describe what I'm up to these days.">
+        <meta name="viewport" content="width=device-width, initial-scale=1.0">
+        <link rel="stylesheet" type="text/css" href="/style.css">
+        <link rel="icon" href="/favicon.ico">
+    </head>
+    <body>
+        <div class = "content-wrapper">
+        <header class="main-head">
+            <a href="/">
+                <img src="banner.webp" class="banner" alt="Skullheadx">
+            </a>
+        </header>
+        <nav class="main-nav">
+            <section>
+                <h2>General</h2>
+                <ul>
+                    <li><a href="index.html">Index</a></li>
+                    <li><a href="about.html">About</a></li>
+                    <li><a href="now.html">Now</a></li>
+                    <li><a href="links.html">Links</a></li>
+                </ul>
+            </section>
+            <section>
+                <h2>Blog</h2>
+                <ul>
+                    <li><a href="tech/index.html">/tech/</a></li>
+                    <li><a href="phil/index.html">/phil/</a></li>
+                    <li><a href="life/index.html">/life/</a></li>
+                    <li><a href="music/index.html">/music/</a></li>
+                </ul>
+            </section>
+            <section>
+                <h2>Projects</h2>
+                <ul>
+                    <li><a href="projects/dotfiles.html">Nixos Config</a></li>
+                    <li><a href="projects/suckless.html">Suckless</a></li>
+                </ul>
+            </section>
+            <section>
+                <h2>Contact</h2>
+                <a href="mailto:skull@skullheadx.com">Email</a>
+            </section>
+        </nav>
+        <main class="content">
+            <article>
+                <hgroup>
+                <h2>Now</h2>
+                <small>A /now page shares what you’d tell a friend you hadn’t seen in a year.</small>
+                </hgroup>
+                <ul class="list-disc">
+                    <li><p>Creating this website! I'm writing new articles on Soyence, suckless software using Nix, and more.</p></li>
+                    <li><p>Trying to understand how to view the world more symbolically and recognize the comsological patterns that are present throughout creation. Blog post will come once I can explain it simply.</p></li> 
+                    <li><p>Ricing my suckless NixOS configuration. Everything I add is bloat since it's so suckles to begin with. Unfortunately the bad thing about NixOS is that it's stuck using soystemD.</p></li>
+                </ul>
+            </article>
+            <footer>
+                <p>Inspired by <a href="https://nownownow.com/about">https://nownownow.com</a></p>
+                <p>Updated: <time datetime="2026-05-06">May 6, 2026</time></p>
+            </footer>
+        </main>
+        <footer class="main-footer">
+            <a href="https://skullheadx.com">https://skullheadx.com</a>
+        </footer>
+        </div>
+    </body>
+</html>
index 127e15fdf794efafe19ef21f7076ca2a26fe07a0..8676a41ebda4d8787d9884aadd867f1b105a12b7 100644 (file)
--- a/style.css
+++ b/style.css
@@ -51,6 +51,16 @@ li {
     margin: 2px 0;
 }
 
+/* disc for lists */
+.list-disc {
+    margin-left: 2em;
+}
+
+.list-disc > li {
+    list-style: disc;
+    margin: 2px 0;
+}
+
 /* grid stuff */
 .main-head {
   grid-area: header;