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 |
{{ define "head" }} <link rel="stylesheet" href="{{.StylePath}}"> {{ end }} {{ define "body" }} {{ template "header" . }} <style> img { width: 100%; margin-top: 1rem; border-radius: var(--border-radius); } </style> <img src="/assets/img/keyboard.jpg"/> <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> {{ end }} {{ define "scripts" }} {{ end }} |