diff options
author | Mark Powers <mark@marks.kitchen> | 2021-09-26 21:53:40 -0500 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2021-09-26 21:53:40 -0500 |
commit | bbab3cf95b85b0314e9f47328bb2a38c540a5345 (patch) | |
tree | 2559d699b0106b913697dc0543e1fe9fee055189 /src/templates | |
parent | dc98fdf6664645b6356b71a60edca9a07f21dff6 (diff) |
Add about me page
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/about.html | 65 | ||||
-rw-r--r-- | src/templates/navigation.html | 1 |
2 files changed, 66 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> diff --git a/src/templates/navigation.html b/src/templates/navigation.html index b101bab..6213e87 100644 --- a/src/templates/navigation.html +++ b/src/templates/navigation.html @@ -1,5 +1,6 @@ <nav class="titlebar"> <a href="/" class="btn btn-primary">Home</a> + <a href="/about" class="btn btn-primary">About</a> <a href="/bread" class="btn btn-primary">Bread</a> <a href="/blog" class="btn btn-primary">Blog</a> <a href="https://games.marks.kitchen" class="btn btn-primary">Games</a> |