commit afb37ac406403e1f669fd81557f8b2b25340e96a
Author: Shipwreckt <me@shipwreckt.co.uk>
Date: Thu, 30 Jul 2026 00:44:34 +0100
inital commit
Diffstat:
4 files changed, 193 insertions(+), 0 deletions(-)
diff --git a/public_html/SV/index.html b/public_html/SV/index.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="sv">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Shipwreckt på ESSE</title>
+ <link rel="stylesheet" href="/main.css">
+ <link rel="icon" type="image/png" href="../dredd.png">
+ </head>
+
+ <body>
+ <header>
+ <h1>
+ <img src="../dredd.png" alt="Profilbild" width="75px" class="pfp">
+ <u>DFL Shipwreckt @ ESSE</u>
+ </h1>
+
+ <nav>
+ <pre><a href="/">Projektsida</a> | <a href="https://pgp.esse-box.uk">PGP</a></pre>
+ <hr>
+ </nav>
+ </header>
+
+ <p>God dag till alla som läser detta. Du läser just nu min personliga sida på ESSE, vilket står för <em>Experimental Shared System Environment</em>.</p>
+
+ <h2>Min roll på ESSE</h2>
+ <p>På det experimentella delade systemet är jag en av ägarna tillsammans med medägaren <a href="/~gositi">Gositi</a>. Jag använder systemet, experimenterar med det och håller på med allt möjligt. Men jag följer fortfarande reglerna som är huggna i sten.</p>
+
+ <hr>
+ <h2>Kontaktinformation</h2>
+ <ul>
+ <li>Webbplats: <a href="https://shipwreckt.co.uk">Shipwreckt.co.uk</a></li>
+ <li>Email: <a href="mailto:me@shipwreckt.co.uk">me@shipwreckt.co.uk</a></li>
+ <li>Server email: shipwreckt@localhost</li>
+ </ul>
+
+ <footer>
+ <hr>
+ <p><a href="../index.html">EN</a>
+ </footer>
+
+ </body>
+</html>
diff --git a/public_html/dredd.png b/public_html/dredd.png
Binary files differ.
diff --git a/public_html/index.html b/public_html/index.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<html lang="en_GB">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Shipwreckt on ESSE</title>
+ <link rel="stylesheet" href="main.css">
+ <link rel="icon" type="image/png" href="./dredd.png">
+ </head>
+
+ <body>
+ <header>
+ <h1>
+ <img src="dredd.png" alt="Profile picture" width= "75px" class="pfp">
+ <u>DFL Shipwreckt @ ESSE</u>
+ </h1>
+
+ <nav>
+ <pre><a href="/">Project page</a> | <a href="https://pgp.esse-box.uk">PGP</a></pre>
+ <hr>
+ </nav>
+ </header>
+
+ <p>Good day to all that may read this. You are currently reading my personal page on ESSE. That being the Experimental Shared System Environment.</p>
+
+ <h2>Role on ESSE</h2>
+ <p>On the experimental shell system environment I am a owner, along with the co-owner <a href="/~gositi">Gositi</a>. I use the system, play with it, and all of that stuff. But I still abide by the rules which are set in stone.</p>
+
+ <hr>
+ <h2>Contact info</h2>
+ <ul>
+ <li>Website: <a href="https://shipwreckt.co.uk">Shipwreckt.co.uk</a></li>
+ <li>Mail: <a href="mailto:me@shipwreckt.co.uk">Me@shipwreckt.co.uk</a></li>
+ <li>server mail: shipwreckt@localhost</a></li>
+ </ul>
+
+ <footer>
+ <hr>
+ <p><a href="SV/index.html">SV</a>
+ </footer>
+
+ </body>
+</html>
diff --git a/public_html/main.css b/public_html/main.css
@@ -0,0 +1,107 @@
+/* ESSE - attempt 3 at a retro amber terminal theme */
+
+* {
+ box-sizing: border-box;
+}
+
+body {
+ background: #000;
+ color: #ffb000;
+ font-family: "Courier New", Courier, monospace;
+ font-size: 16px;
+ line-height: 1.6;
+
+ max-width: 900px;
+ margin: 0 auto;
+ padding: 2rem;
+}
+
+h1,
+h2,
+h3 {
+ color: #ffd35a;
+ font-weight: normal;
+ margin-top: 1.5rem;
+}
+
+hr {
+ border: none;
+ border-top: 1px solid #8a5a00;
+ margin: 1.5rem 0;
+}
+
+p,
+li {
+ color: #ffb000;
+}
+
+ul {
+ padding-left: 2em;
+}
+
+a {
+ color: #ffd35a;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+a:visited {
+ color: #d79a00;
+}
+
+strong {
+ color: #ffe38c;
+}
+
+pre {
+ font-family: inherit;
+ white-space: pre-wrap;
+ margin: 0;
+}
+
+header,
+main,
+footer {
+ width: 100%;
+}
+
+footer {
+ margin-top: 2rem;
+ color: #c78400;
+ font-size: 0.95rem;
+}
+
+::selection {
+ background: #ffb000;
+ color: #000;
+}
+
+/* CRTesc glow */
+body,
+h1,
+h2,
+h3,
+a,
+strong {
+ text-shadow:
+ 0 0 2px rgba(255, 176, 0, 0.8),
+ 0 0 8px rgba(255, 176, 0, 0.2);
+}
+
+
+
+
+h1 {
+ display: flex;
+ align-items: center;
+ gap: 12px;
+}
+
+.pfp {
+ height: auto;
+ margin-right: 12px;
+ vertical-align: middle;
+}