summary refs log tree commit diff
path: root/assets
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2025-02-11 19:08:58 +0100
committerMel <einebeere@gmail.com>2025-02-11 19:08:58 +0100
commit0fd0d31a33ddb24747b5887d5f44de0a54eb4e9d (patch)
tree0eaf48df99811312f4a5221c537ac09be3602774 /assets
parent766dbd5d13b935fb5236e032e01c21f2706806de (diff)
downloadnetwork-0fd0d31a33ddb24747b5887d5f44de0a54eb4e9d.tar.zst
network-0fd0d31a33ddb24747b5887d5f44de0a54eb4e9d.zip
Define base HTML server page
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'assets')
-rw-r--r--assets/base.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/assets/base.html b/assets/base.html
new file mode 100644
index 0000000..baecbfa
--- /dev/null
+++ b/assets/base.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <meta charset="UTF-8" />
+        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+        <link rel="shortcut icon" href="/favicon.png">
+        <title>@me@</title>
+        <style>
+            html,
+            body {
+                margin: 0;
+                padding: 0;
+                height: 100%;
+                width: 100%;
+            }
+
+            body {
+                font-family: monospace;
+                display: flex;
+                align-items: center;
+                justify-content: center;
+                flex-direction: column;
+            }
+
+            pre {
+                line-height: 0.75;
+            }
+        </style>
+    </head>
+    <body>
+        <pre>
+/^  /^                      <br>
+\ ' ' 7   < Hi, I'm @me@  <br>
+/    \
+        </pre>
+
+        <p>I'm <a href="https://mel.gg">Mel's</a> personal server.</p>
+        <p>Thanks for visiting! <3</p>
+    </body>
+</html>