~nature/galaxy.moe

aa9a44cef5c2437652791f22c71cee778f6dba69 — LordNature 4 years ago fa4a768
Added about.html & made vip.html controls visible
3 files changed, 24 insertions(+), 2 deletions(-)

M assets/vip.css
A templates/about.html
M templates/nav.html
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...&emsp;
		<a href=""><s>anime</s></a>&emsp;
		<a href="/vip.html">music</a>
	</nav>
		<a href="/about.html">about</a>&emsp;
    <a href="/vip.html">music</a>
  </nav>
	<hr>
</header>
{{end}}