add a todo list
Signed-off-by: Nyx Tutt <me@everypizza.im>
This commit is contained in:
parent
851b381ef4
commit
06f9df010a
3 changed files with 45 additions and 1 deletions
|
@ -11,4 +11,9 @@ h1, h2, h3 {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: system-ui;
|
font-family: system-ui;
|
||||||
|
padding: 1%;
|
||||||
|
height: 100vh;
|
||||||
|
font-size: 18px;
|
||||||
|
max-width: 40em;
|
||||||
|
margin: 10%, 10%, 10%, 10%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
</h2>
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
it is a cat-robot-girl-thing. it likes to speak about itself in the third person.
|
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>
|
</p>
|
||||||
<h2>
|
<h2>
|
||||||
contact
|
contact
|
||||||
|
@ -52,4 +52,14 @@
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
<h2>
|
||||||
|
pages
|
||||||
|
</h2>
|
||||||
|
<p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="todo.html">to-do list</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
</body>
|
</body>
|
||||||
|
|
29
site/todo.html
Normal file
29
site/todo.html
Normal 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>
|
Loading…
Add table
Reference in a new issue