15 lines
No EOL
796 B
PHP
15 lines
No EOL
796 B
PHP
</main>
|
|
<footer class="p-8 border-t border-slate-800/60 text-center text-slate-600 text-sm">
|
|
© <?= date('Y') ?>. Made with 🍺 and 🍕. <!-- Deployed via Forgejo CI/CD -->
|
|
</footer>
|
|
<?php if (Config::get('APP_ENV') !== 'production'): ?>
|
|
<div class="fixed bottom-4 left-4 bg-slate-900 border border-rose-500/30 text-rose-400 px-3 py-1.5 rounded-md shadow-lg flex items-center gap-3 text-xs font-mono z-100">
|
|
<span class="flex h-2 w-2 relative">
|
|
<span class="animate-ping absolute inline-flex h-full w-full rounded-full bg-rose-400 opacity-75"></span>
|
|
<span class="relative inline-flex rounded-full h-2 w-2 bg-rose-500"></span>
|
|
</span>
|
|
<span>ENV: <?= strtoupper(htmlspecialchars(Config::get('APP_ENV', 'DEV'))) ?></span>
|
|
</div>
|
|
<?php endif; ?>
|
|
</body>
|
|
</html>
|