all repos — www @ 444b2edbceb8b5bb5e080e70c5449c9702558789

deserthorns.net content + generator

pages/keyboard.html (view raw)

 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
{{ define "head" }}
<link rel="stylesheet" href="{{.StylePath}}">
<style>
    img {
        width: 100%;
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }
    .body-2-col {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    .body-2-col > div {
        flex: 1;
    }
    @media screen and (max-width: 600px) {
        .body-2-col {
            flex-direction: column;
        }
    }
</style>
{{ end }}

{{ define "body" }}
{{ template "header" . }}
<div class="body-2-col">
    <div id="body-left">
        <img src="/assets/img/keyboard.jpg"/>
    </div>
    <div>
        <p>
            My keyboard is a hand-built Atreus62 from Profet Keyboards.
            This project was a few firsts for me: it was my first soldering
            project (all those surface-mount diodes were a challenge) and 
            it was my first time using a laser cutter to cut the acrylic for the case.
        </p>
        <h2>hardware</h2>
        <p>
            The keyswitches for the alphanumerics are Cherry MX Clears, while the
            modifiers use Cherry MX Browns.
        </p>
        <h2>firmware</h2>
        <p>
            The firmware is built using <a href="https://qmk.fm/">QMK</a>.
        </p>
    </div>
</div>
{{ end }}

{{ define "scripts" }}
{{ end }}