commit 9757501e8e96199b47ce83fc2903e6eafc430626
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Wed, 4 Aug 2021 05:45:01 -0400
Initial commit
Diffstat:
3 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/favicon.png b/favicon.png
Binary files differ.
diff --git a/index.html b/index.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="description" content="The homepage of Jake Bauer on the internet.">
+ <link rel="stylesheet" href="/main.css">
+ <link rel="icon" type="image/png" href="/favicon.png">
+ <title>jbauer.ca</title>
+ </head>
+ <body>
+ <header>
+ <h1><img src="/favicon.png" alt="Logo" width=48 height=48> Hey There!</h1>
+ </header>
+ <main>
+ <p>My name is Jake Bauer, commonly known as <code>jbauer</code> or <code>avocatto</code> on the internet. I am a sysadmin, reluctant programmer, and an aspiring writer.</p>
+
+ <h2>What I Do</h2>
+ <p>Here are some of the things I do outside of my full-time job:</p>
+ <ul>
+ <li>I blog about tech and other hobbies: <a href="https://www.paritybit.ca">www.paritybit.ca</a></li>
+ <li>I host a suite of services for friends: <a href="https://www.jaderune.net">JadeRune.net</a></li>
+ <li>I hack on things I am interested in: <a href="https://sr.ht/~jbauer/">sr.ht/~jbauer</a></li>
+ <li>I hang out on the Fediverse: <a href="https://bsd.network/@jbauer">bsd.network</a></li>
+ </ul>
+ <h2>Contact</h2>
+ <p>If you are interested in contacting me, feel free to <a href="mailto:jbauer@paritybit.ca">email me!</a></p>
+ <h2>Donate</h2>
+ <p>If you like what I do and wish to send a few <code>$CURRENCY_UNIT</code>s my way, the easist way is via <a href="paypal.me/paritybit">PayPal</a>, or to use this <a href="https://www.vultr.com/?ref=8575845">Vultr referral link</a>. Thanks!
+ </main>
+ </body>
+</html>
diff --git a/main.css b/main.css
@@ -0,0 +1,39 @@
+html {
+ scrollbar-color: #83b3d8 transparent;
+}
+
+body {
+ background-color: #25252a;
+ color: #ccc;
+ font-size: 120%;
+ line-height: 1.3rem;
+ max-width: 50%;
+ margin: 0 auto;
+ padding: 0.5em 0 3em 0;
+}
+
+code {
+ font-family: monospace;
+ background-color: #4c4c4c;
+ color: #eaeaea;
+ padding: 1px 4px;
+ border-radius: 5px;
+}
+
+a, nav a:visited {
+ color: #83b3d8;
+}
+
+a:hover, li a:hover, .feed-item:hover, nav a:hover {
+ color: #80ccff !important;
+ text-decoration: underline;
+}
+
+a:visited {
+ color: #a696cc;
+}
+
+a:hover {
+ text-decoration: none;
+}
+