15 lines
456 B
PHP
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>© <?= date('Y') ?> · build: <a href="<?= htmlspecialchars(REPO_URL) ?>"><?= htmlspecialchars($build) ?></a></small>
|
|
</footer>
|
|
</body>
|
|
</html>
|