summaryrefslogtreecommitdiff
path: root/templates/about.rs.html
blob: 95fb994709362be1069a7aaecd05e93b35f56e8a (plain) (blame)
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
@use super::{header_html, footer_html};

@()

@:header_html(None, None)

<h1>Contact</h1>

<div class="two-column">
    <div class="inner-column">
        <h3>Email</h3>
        <p>The best way to reach me is via email: [my name] [at] [this site]. I
        try to respond as soon as I can but please understand that I am a
        college student who is also busy with maintaining her own systems that
        other people depend on.</p>
    </div>
    <div class="inner-column">
        <h3>Social Media</h3>
        <ul>
            <li>Mastodon: <a
                                  href="https://lgbt.io/@@muirrum">muirrum@@lgbt.io</a></li>
            <li>GitHub: <a href="https://github.com/Muirrum">Muirrum</a></li>
            <li>SourceHut: <a href="https://sr.ht/~muirrum">~muirrum</a></li>
            <li>Personal Gitea: <a
                                        href="https://git.carathe.dev/muirrum">muirrum</a></li>
    </div>
</div>

<h1>Selected Projects</h1>
<div class="two-column">
    <div class="inner-column">
        <h3>Campmaster-Constantine (Discontinued)</h3>
        <p>Discord bot written in Rust, then Python. Discontinued after
        discord.py was retired.</p>
    </div>
    <div class="inner-column">
        <h3>WG-Manager</h3>
        <p>Enables automatic provisioning of new peers across a Wireguard
        network based on a management server.</p>
    </div>
</div>

@:footer_html()