diff options
Diffstat (limited to 'html/index.php')
| -rw-r--r-- | html/index.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/html/index.php b/html/index.php index 12660e8..f2afded 100644 --- a/html/index.php +++ b/html/index.php @@ -1,6 +1,8 @@ <?php $p = isset($_GET['p']) && $_GET['p'] === '1' ? 1 : 0; +$commit = trim(@file_get_contents('/usr/share/nginx/commit') ?: ''); + $pronounCount = 0; function pronoun(...$forms) { global $p, $pronounCount; @@ -103,14 +105,14 @@ $penguin = implode(' ', array_map($gen, range(1, $n))); <body> <h1><?= pronoun('Elizabeth', 'Alexander') ?> Hunt (<?= pronoun('she', 'he') ?>) (ca 2003)</h1> <div> - [me at <a href="https://en.wikipedia.org/wiki/Logarithmic_integral_function" target="_blank">Li(z)</a> dot coffee (<a class="tt" href="mailto:me@liz.coffee">mailto</a>)] · + [me at <a href="https://en.wikipedia.org/wiki/Logarithmic_integral_function" target="_blank">li(z)</a> dot coffee (<a class="tt" href="mailto:me@liz.coffee">mailto</a>)] · [<a href="https://code.liz.coffee">git hub</a>] · [<a href="https://linkedin.com/in/emprespresso">linkedin</a>] · [<a href="https://instagram.com/emprespresso">instagram</a>] · [<a href="https://x.com/emprespresso">twitter</a>] </div> - <marquee>If you <a href="https://web.archive.org/web/20260720071542/https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/marquee">don't like the marquee tag</a> then <?= pronoun('she', 'he') ?> will find you and <?= pronoun('she', 'he') ?> will blast you to smithereens.</marquee> + <marquee>If you <a href="https://web.archive.org/web/20260720071542/https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/marquee">take away <?= pronoun('her', 'his') ?> marquee tag</a> then <?= pronoun('she', 'he') ?> will find you and <?= pronoun('she', 'he') ?> will blast you to smithereens.</marquee> <hr /> <div><p><?= pronoun('She', 'He') ?> is not particularly exceptional at anything, but can functionally do a fair bit of stuff, of which extremely variable ability perhaps is the only exceptional thing about <?= pronoun('her', 'him') ?>.</p></div> @@ -128,6 +130,12 @@ $penguin = implode(' ', array_map($gen, range(1, $n))); <p>Gus! Bread!</p> <div><img src="assets/gus.jpeg" width="300"> <img src="assets/bread.jpeg" width="300"></div> <div style="display: flex; align-items: center; justify-content: center;"><img width="100" src="assets/penguin.gif"><a href="https://liz.coffee"><img src="https://adelie.liz.coffee/img/blinkies/liz--coffee.gif" width="150" height="20"></a></div> + <div> +<?php if ($commit !== ''): ?> + commit <a href="https://code.liz.coffee/lizdotcoffee.git/commit/?id=<?= htmlspecialchars($commit, ENT_QUOTES) ?>"><?= htmlspecialchars(substr($commit, 0, 8), ENT_QUOTES) ?></a> +<?php endif; ?> + built with <a href="https://code.liz.coffee/ci.git/tree/">lizCI</a> + </div> <hr> <br> |
