index.html (3642B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta name="viewport" content="width=device-width, initial-scale=1" /> 5 <meta charset="utf-8" /> 6 <title>cowmonk's Place</title> 7 <link rel="stylesheet" href="main.css" /> 8 <link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png" /> 9 <link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png" /> 10 <link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon-16x16.png" /> 11 <link rel="manifest" href="assets/images/site.webmanifest" /> 12 </head> 13 <body> 14 <header> 15 <h1>cowmonk's Digital Lair ~]#</h1> 16 <p>Welcome to my corner of the web. Explore my thoughts, projects, and other random bits.</p> 17 <nav id="main-nav"> 18 <a href="#about" class="active-nav-item"><b>About</b></a> 19 <a href="projects/">Projects</a> 20 <a href="blog/">Blog</a> 21 <a href="interests/">Interests</a> 22 <a href="credits/">Credits</a> 23 </nav> 24 </header> 25 26 <div class="content-wrapper"> 27 <aside class="profile-info"> 28 <img src="assets/images/pfp.png" alt="[cowmonk pfp]" id="profile-pic"> 29 <h3>cowmonk</h3> 30 <p><em>Linux enthusiast, C enjoyer, and lifelong suckless shill.</em></p> 31 32 <details class="contacts"> 33 <summary><b>Contact & Links</b></summary> 34 <dl class="contact-details"> 35 <dt>Email / XMPP</dt> 36 <dd>cowmonk@based.pt</dd> 37 38 <dt>GitHub</dt> 39 <dd><a href="https://github.com/cowmonk" target="_blank" rel="noopener noreferrer">cowmonk</a></dd> 40 41 <dt>Codeberg</dt> 42 <dd><a href="https://codeberg.org/cowmonk" target="_blank" rel="noopener noreferrer">cowmonk</a></dd> 43 44 <dt>Based Git</dt> 45 <dd><a href="https://git.based.pt/cowmonk" target="_blank" rel="noopener noreferrer">cowmonk</a></dd> 46 </dl> 47 </details> 48 </aside> 49 50 <main class="main-content"> 51 <section id="about"> 52 <h2><span class="prompt">$</span> Who am I?</h2> 53 <p>Hello there! I'm cowmonk. I'm passionate about open-source software, the Linux ecosystem, and building things from the ground up. This space is where I document my journey, share what I learn, and showcase my work.</p> 54 <p>My philosophy is rooted in the KISS (Keep It Simple, Stupid) principle, much like the tools I admire (DWM, suckless utilities, etc.). I believe in understanding the core of how things work, hence my adventures with Linux From Scratch.</p> 55 <p>When I'm not staring at a terminal, you might find me online or doing some other hobbist nerdy things such as getting into the nitty gritty of audiophile things.</p> 56 </section> 57 </main> 58 </div> 59 60 <footer> 61 <a href="https://www.vim.org/" target="_blank" rel="noopener noreferrer"><img src="https://cyber.dabamos.de/88x31/vim.vialle.love.anim.gif" alt="[Made on Vim]" height="31" /></a> 62 <img src="https://88x31.kate.pet/madeon_linux.gif" alt="[Made on Linux]" height="31" /> 63 <img src="https://cyber.dabamos.de/88x31/javascript-zero.gif" alt="[No JavaScript]" height="31" /> 64 <center> 65 <p><a href="https://based.pt/~bacalhau">[ prev ]</a> | <a href="https://based.pt/webring">[ webring ]</a> | <a href="https://ariamath.xyz/~broke">[ next ]</a></p> 66 </center> 67 <p>© 2026 cowmonk.</p> 68 </footer> 69 </body> 70 </html> 71 72