Add projects, rewrite index page

This commit is contained in:
HackerNCoder 2024-03-04 22:12:01 +01:00
parent e190080be1
commit e8081f89c4
3 changed files with 67 additions and 2 deletions

View file

@ -37,6 +37,7 @@
<ul class="left-nav__list">
<li class="left-nav__li">
<div class="left-nav__block">
<a class="left-nav__list-link" href="/projects.html">Projects</a>
</div>
</li>
</ul>

View file

@ -37,6 +37,7 @@
<ul class="left-nav__list">
<li class="left-nav__li">
<div class="left-nav__block">
<a class="left-nav__list-link" href="/projects.html">Projects</a>
</div>
</li>
</ul>
@ -47,8 +48,8 @@
<main>
<section>
<h1 class="page-title">Welcome to my website</h1>
<p>Hi, I'm hackerncoder. I redesigned my website on new year 2024 - no actually, I rewrote it. I used to run writefreely, but I decided to make a fully static html+css-only website.</p>
<p>Actually, my mastodon bio is more correct, I "stole" this website (some time ago... It's been a year since I asked if I could). <a href="https://cadence.moe">cadence</a> (go check her website out!) actually made this, and hers is the better of our two, since design and colours isn't really my strong point somehow</p>
<p>Hi, I'm hackerncoder. I rewrote my website on new year 2024. I used to run writefreely, but I decided to make a fully static html+css-only website.</p>
<p>Actually, my mastodon bio is more correct, I "stole" this website (some time ago... It's been a year since I asked if I could use this design). <a href="https://cadence.moe">cadence</a> (go check her website out!) actually made this, and hers is the better of our two, since design and colours isn't really my strong point</p>
</section>
</main>
</div>

63
projects.html Normal file
View file

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HackerNCoders website</title>
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div class="layout">
<header>
<div class="big-text-header">
<h1 class="big-text-header__text">HackerNCoders website</h1>
</div>
</header>
<div class="layout__columns">
<div class="layout__left-col">
<nav class="left-nav">
<ul class="left-nav__categories">
<li class="left-nav__category">
<div class="category-label">Me</div>
<ul class="left-nav__list">
<li class="left-nav__li">
<div class="left-nav__block">
<a class="left-nav__list-link" href="/">home</a>
</div>
</li>
<li class="left-nav__li">
<div class="left-nav__block">
<a class="left-nav__list-link" href="/contact.html">contact</a>
</div>
</li>
</ul>
</li>
<li class="left-nav__category">
<div class="category-label">Stuff</div>
<ul class="left-nav__list">
<li class="left-nav__li">
<div class="left-nav__block">
<a class="left-nav__list-link" href="/projects.html">Projects</a>
</div>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<main>
<section>
<h1 class="page-title">Projects</h1>
<p>I have some projects that I work on, here is a list of some of them:</p>
<ul>
<li><a href="https://queerscriptors.org">Queerscriptors</a>: "A community of people that translate queer games"</li>
<li><a href="https://comlib.encryptionin.space">Comrades Library</a>: I make EPUBs of old books</li>
</section>
</main>
</div>
<footer>
<a href="https://cadence.moe" target="_blank"><img src="/static/img/cadence_now.png" alt="The text &quot;cadence now!&quot; on a purple background. There is a moon-shaped logo on the left side and a tiny star in the bottom right." width="88" height="31"></a>
</footer>
</div>
</body>
</html>