diff options
author | Aleteoryx <alyx@aleteoryx.me> | 2024-08-18 09:51:13 -0400 |
---|---|---|
committer | Aleteoryx <alyx@aleteoryx.me> | 2024-08-18 09:51:13 -0400 |
commit | c31b1fd20582a094f6e3c13191898b8d2b42a2e9 (patch) | |
tree | 4fbd96e68dbf1c0b8a44bfc7ac7a43856b3e1f52 /index.php | |
parent | a017acb0689378d2cb844f8e0c5348e764e3363d (diff) | |
download | ame-homepage-c31b1fd20582a094f6e3c13191898b8d2b42a2e9.tar.gz ame-homepage-c31b1fd20582a094f6e3c13191898b8d2b42a2e9.tar.bz2 ame-homepage-c31b1fd20582a094f6e3c13191898b8d2b42a2e9.zip |
deduplicate logo in text-mode browsers
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -46,10 +46,14 @@ function lend() { <link rel=canonical href="https://aleteoryx.me/"> </head> <body> + <?php if ($wb->browser->type == 'browser:text'): ?> + <pre aria-label="logo: ah lee tee ore ikhs dot m e" id=logo><?= file_get_contents("logo.txt") ?></pre> + <?php else: ?> <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> + <?php endif; ?> <?= lstart("text text text") ?> <hr> <?= lend() ?> |