diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 32 |
1 files changed, 29 insertions, 3 deletions
@@ -11,6 +11,25 @@ define("NAMES", [ "Marcy", "Sasha" ]); + +$wb = new WhichBrowser\Parser(getallheaders()); + +function lstart(string $title) { + global $wb; + if (!$wb->isMobile()) + return "<details class=border><summary><h3>$title</h3></summary>"; + else + return "<section class=border><h3>$title</h3>"; +} + +function lend() { + global $wb; + if (!$wb->isMobile()) + return "</details>"; + else + return "</section>"; +} + ?> <!doctype html> <html lang=en> @@ -18,14 +37,21 @@ define("NAMES", [ <meta charset="utf-8"> <meta name=viewport content="width=device-width, initial-scale=1"> <link rel=stylesheet href="/style.css"> + <?php if ($wb->isEngine("Gecko")): ?> + <link rel=stylesheet href="/style/firefox.css"> + <?php endif; ?> + <?php if ($wb->isEngine("Blink") && $wb->isMobile()): ?> + <link rel=stylesheet href="/style/mobile-chrome.css"> + <?php endif; ?> <link rel=canonical href="https://aleteoryx.me/"> </head> -<body<?php if ((new WhichBrowser\Parser(getallheaders()))->isType("mobile")) echo " class=mobile"; ?>> +<body> <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> + <?= lstart("text text text") ?> + <hr> + <?= lend() ?> </body> </html> |