12 lines
383 B
PHP
12 lines
383 B
PHP
<?php $build = trim((string) @file_get_contents(__DIR__ . '/../build.txt')) ?: '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>
|