Files
0xa0 d4901ec329
Deploy / deploy (push) Successful in 3s
regexing as God Intended
2026-07-22 16:40:04 +02:00

15 lines
456 B
PHP

<?php
$build = trim((string) @file_get_contents(__DIR__ . '/../build.txt'));
$build = preg_match('/[0-9a-f]{7,40}/i', $build, $m) ? $m[0] : ($build ?: 'dev');
?>
<?php require_once __DIR__ . '/buttons.php'; ?>
</main>
<footer>
<div class="buttons88x31">
<?= render_buttons_88x31() ?>
</div>
<small>&copy; <?= date('Y') ?> · build: <a href="<?= htmlspecialchars(REPO_URL) ?>"><?= htmlspecialchars($build) ?></a></small>
</footer>
</body>
</html>