add a todo list

Signed-off-by: Nyx Tutt <me@everypizza.im>
This commit is contained in:
Nyx 2025-02-23 22:28:15 -06:00
parent 851b381ef4
commit 06f9df010a
3 changed files with 45 additions and 1 deletions

View file

@ -11,4 +11,9 @@ h1, h2, h3 {
body {
font-family: system-ui;
padding: 1%;
height: 100vh;
font-size: 18px;
max-width: 40em;
margin: 10%, 10%, 10%, 10%;
}

View file

@ -17,7 +17,7 @@
</h2>
<p>
it is a cat-robot-girl-thing. it likes to speak about itself in the third person.
it likes linux and uses nixos.
it likes linux and uses nixos. it lives in texas, but hates it here.
</p>
<h2>
contact
@ -52,4 +52,14 @@
</li>
</ul>
</p>
<h2>
pages
</h2>
<p>
<ul>
<li>
<a href="todo.html">to-do list</a>
</li>
</ul>
</p>
</body>

29
site/todo.html Normal file
View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<head>
<title>
Nyx's personal site
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<a href="/">go back home</a>
<h1>
to-do
</h1>
<p>
<ul>
<li>
host more stuff
</li>
<li>
look into more optimizations
</li>
<li>
switch this site to a flask app
</li>
</ul>
</p>
</body>