diff options
-rw-r--r-- | assets/common/css/common.css | 4 | ||||
-rw-r--r-- | includes/header.php | 2 | ||||
-rw-r--r-- | index.php | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/assets/common/css/common.css b/assets/common/css/common.css index 593ea53..cc35fd9 100644 --- a/assets/common/css/common.css +++ b/assets/common/css/common.css @@ -120,12 +120,12 @@ html, body { margin: 0; } -#intro-ref-link { +#intro-ref-link, #intro-sys-link { color: white; text-decoration: none; } -#intro-ref-link:hover { +#intro-ref-link:hover, #intro-sys-link:hover { text-decoration: underline; } diff --git a/includes/header.php b/includes/header.php index 765bd28..130257c 100644 --- a/includes/header.php +++ b/includes/header.php @@ -1,4 +1,4 @@ <?php -$conepone = str_ends_with($_SERVER['HTTP_HOST'], "conep.one"); +$conepone = str_contains($_SERVER['HTTP_HOST'], "cloudburst."); $domainMode = $conepone ? "conep.one" : "minteck.org";
\ No newline at end of file @@ -11,7 +11,7 @@ global $domainMode; <html lang="en"> <head> <meta charset="UTF-8"> - <title><?= $conepone ? "Cloudburst System" : "Minteck.org" ?></title> + <title><?= $conepone ? "Cloudburst System" : "Scoots Raindrops" ?></title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/assets/common/css/fonts.css"> <link rel="stylesheet" href="/assets/common/css/common.css"> @@ -37,12 +37,12 @@ global $domainMode; <div class="container" id="intro"> <img alt="" id="intro-avatar" src="/assets/<?= $conepone ? "conep.one" : "minteck.org" ?>/avatar.png"> - <h1 id="intro-title"><?= $conepone ? "Cloudburst System" : "Minteck" ?></h1> + <h1 id="intro-title"><?= $conepone ? "Cloudburst System" : "Scoots Raindrops" ?></h1> <p id="intro-ref"> <?php if ($conepone): ?> Plural system of 13 ponies! <?php else: ?> - <a href="https://www.youtube.com/watch?v=RkwbAR9aAqo&t=67s" target="_blank" id="intro-ref-link">I'll soar into that sky, on these wings small and pure</a> + Part of <a href="https://ponies.equestria.horse/Raindrops:About" target="_blank" id="intro-sys-link">the Raindrops System</a> ยท <a href="https://www.youtube.com/watch?v=RkwbAR9aAqo&t=67s" target="_blank" id="intro-ref-link">I'll soar into that sky, on these wings small and pure</a> <?php endif; ?> </p> </div> |