44 lines
1.9 KiB
PHP
44 lines
1.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
?>
|
|
<footer class="site-footer border-top">
|
|
<div class="container py-5">
|
|
<div class="row g-4 align-items-start">
|
|
<div class="col-lg-6">
|
|
<div class="d-flex align-items-center gap-3 mb-3">
|
|
<span class="brand-mark brand-mark--footer"><?= htmlspecialchars(site_initials()) ?></span>
|
|
<div>
|
|
<div class="brand-name mb-1"><?= htmlspecialchars(site_name()) ?></div>
|
|
<div class="footer-muted">High-end digital products for ambitious teams.</div>
|
|
</div>
|
|
</div>
|
|
<p class="footer-copy mb-0">Strategy, design, engineering, and modernization delivered with a senior-only team and a calm operating rhythm.</p>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="footer-links">
|
|
<?php foreach (nav_items() as $item): ?>
|
|
<a href="<?= htmlspecialchars($item['href']) ?>"><?= htmlspecialchars($item['label']) ?></a>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<p class="footer-small mb-0 mt-3">Remote delivery across North America and Europe · © <?= htmlspecialchars(current_year()) ?> <?= htmlspecialchars(site_name()) ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<div class="toast-container position-fixed bottom-0 end-0 p-3">
|
|
<div id="siteToast" class="toast site-toast" role="status" aria-live="polite" aria-atomic="true">
|
|
<div class="toast-header">
|
|
<span class="toast-dot"></span>
|
|
<strong class="me-auto"><?= htmlspecialchars(site_name()) ?></strong>
|
|
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
|
|
</div>
|
|
<div class="toast-body"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="<?= htmlspecialchars(asset_url('assets/js/main.js')) ?>"></script>
|
|
</body>
|
|
</html>
|