summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleteoryx <alyx@aleteoryx.me>2024-08-17 17:22:26 -0400
committerAleteoryx <alyx@aleteoryx.me>2024-08-17 17:22:26 -0400
commit6b5302c37a825656ba6265e2d99689329fee20e2 (patch)
treebf4d95e2282e11343f381f7583984838e65e6d8f
parent82fd55c70d5cc6fb875210e5413db00ad658d52d (diff)
downloadame-homepage-6b5302c37a825656ba6265e2d99689329fee20e2.tar.gz
ame-homepage-6b5302c37a825656ba6265e2d99689329fee20e2.tar.bz2
ame-homepage-6b5302c37a825656ba6265e2d99689329fee20e2.zip
backup before i nuke most work
-rw-r--r--bg.xcfbin0 -> 29046 bytes
-rw-r--r--border.pngbin0 -> 1105 bytes
-rw-r--r--index.php24
-rw-r--r--logo.txt7
-rw-r--r--style.css30
5 files changed, 58 insertions, 3 deletions
diff --git a/bg.xcf b/bg.xcf
new file mode 100644
index 0000000..288a5c7
--- /dev/null
+++ b/bg.xcf
Binary files differ
diff --git a/border.png b/border.png
new file mode 100644
index 0000000..5369ddd
--- /dev/null
+++ b/border.png
Binary files differ
diff --git a/index.php b/index.php
index 853e154..38d201b 100644
--- a/index.php
+++ b/index.php
@@ -1,4 +1,17 @@
-<?php require_once "vendor/autoload.php"; ?>
+<?php
+require_once "vendor/autoload.php";
+
+define("NAMES", [
+ "Anne",
+ "Amity",
+ "Alyx",
+ "Aleteoryx",
+ "Dana",
+ "Maddie",
+ "Marcy",
+ "Sasha"
+]);
+?>
<!doctype html>
<html lang=en>
<head>
@@ -7,7 +20,12 @@
<link rel=stylesheet href="/style.css">
<link rel=canonical href="https://aleteoryx.me/">
</head>
-<body>
- <h1>hi!</h1>
+<body<?php if ((new WhichBrowser\Parser(getallheaders()))->isType("mobile")) echo " class=mobile"; ?>>
+ <div aria-label="logo: ah lee tee ore ikhs dot m e" id=logo>
+ <pre><?= file_get_contents("logo.txt") ?></pre>
+ <pre><?= file_get_contents("logo.txt") ?></pre>
+ </div>
+ <div class=border>
+ <p>text text text</p>
</body>
</html>
diff --git a/logo.txt b/logo.txt
new file mode 100644
index 0000000..7ae8e27
--- /dev/null
+++ b/logo.txt
@@ -0,0 +1,7 @@
+ __ __ https://aleteoryx.me
+ ___ _/ /__ / /____ ___ ______ ____ __ __ _ ___
+/ _ `/ / -_) __/ -_) _ \/ __/ // /\ \ /_ / ' \/ -_)
+\_,_/_/\__/\__/\__/\___/_/ \_, //_\_\(_)/_/_/_/\__/
+ /___/
+ https://aleteoryx.me
+ aich-tee-tee-pee-ess://ah-lee-tee-ore-ikhs.m-e
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..f53e107
--- /dev/null
+++ b/style.css
@@ -0,0 +1,30 @@
+:root {
+ background: #122;
+}
+
+/* --- LOGO --- */
+
+#logo {
+ position: relative;
+ display: none;
+}
+
+#logo > :first-child {
+ color: #000;
+ position: absolute;
+ font-weight: 700;
+ filter: drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 3px #f77) drop-shadow(0px 0px 2px #f00);
+}
+
+#logo > :last-child {
+ color: #fff;
+ position: absolute;
+}
+
+/* --- BORDER --- */
+
+.border {
+ border: 22px solid #0000;
+ border-image: url(/border.png) 22;
+ border-image-repeat: round;
+}