aboutsummaryrefslogtreecommitdiff
path: root/src/templates/about.html
blob: b3d504b77bd9a76876e40bd6f329e55e1dc44e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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">&lt;</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>