diff options
Diffstat (limited to 'src/templates/about.html')
-rw-r--r-- | src/templates/about.html | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/templates/about.html b/src/templates/about.html new file mode 100644 index 0000000..b3d504b --- /dev/null +++ b/src/templates/about.html @@ -0,0 +1,65 @@ +<!doctype html> +<html lang="en"> + +<head> + <title>Mark's Kitchen - About</title> + <link rel="stylesheet" type="text/css" href="/css/styles.css"> + <meta name="description" content="About Mark"> + {{> header}} +</head> + +<body> + <div> + <h1> + <a class="navigation" href="/" title="marks.kitchen"><</a> + About + </h1> + {{> navigation}} + <p> + Hello! I'm Mark Powers. This is my website. I started it back in + 2018 when I wanted to share my process of learning to bake bread. + Now it's mostly just a general blog, but also where I host a lot + of my <a href="/projects">projects</a>. + </p> + <p> + Here's a list of stuff about me: + </p> + <dl> + <dt>Occupation</dt> + <dd>Software engineer at <a href="https://www.chameleoncloud.org/">Chameleon Cloud</a></dd> + + <dt>Location</dt> + <dd>Chicagoland</dd> + + <dt>Almae Matres</dt> + <dd>Hope College, UW-Madison</dd> + + <dt>Source Code</dt> + <dd> + <a href="https://git.marks.kitchen/">Gitweb</a> + or + <a href="https://github.com/Mark-Powers/">GitHub</a> + </dd> + + <dt>Social</dt> + <dd><a href="https://fosstodon.org/@markp">markp</a></dd> + + <dt>Hobbies</dt> + <dd> + Programming, video games, reading, bicycling, woodworking, + chess, cooking, disc golf + </dd> + + <dt>Operating System<dt> + <dd>Regolith Linux</dd> + + <dt>Editor<dt> + <dd>vim</dd> + + <dt>Pets<dt> + <dd>One very fluffy black cat</dd> + </dl> + </div> +</body> + +</html> |