M assets/vip.css => assets/vip.css +1 -0
@@ 8,6 8,7 @@ header {
}
.controls {
+ background-color: var(--bg-color);
position: fixed;
height: 40px;
right: 0;
A templates/about.html => templates/about.html +20 -0
@@ 0,0 1,20 @@
+<html>
+ {{template "head"}}
+ <body>
+ {{template "nav"}}
+ <main>
+ <h1>Hey there!</h1>
+ <p>
+ My name is Christian. I enjoy anime, gaming, programming, and tinkering.
+ </p>
+ <ul>
+ Where I'm at:
+ <li><a href="https://git.sr.ht/~nature">git</a></li>
+ <li><a href="https://keybase.io/natures">keybase</a></li>
+ <li><a href="https://kitsu.io/users/Nature">kitsu</a></li>
+ <li><a href="https://steamcommunity.com/id/LordNature">steam</a></li>
+ </ul>
+ </main>
+ {{template "footer"}}
+ </body>
+</html>
M templates/nav.html => templates/nav.html +3 -2
@@ 4,8 4,9 @@
<nav>
The <a href="/">galaxy</a> awaits... 
<a href=""><s>anime</s></a> 
- <a href="/vip.html">music</a>
- </nav>
+ <a href="/about.html">about</a> 
+ <a href="/vip.html">music</a>
+ </nav>
<hr>
</header>
{{end}}