Files
2026-02-09 01:38:39 +01:00

15 lines
611 B
PHP
Executable File

<?php
$version = $GLOBALS['app_version'] ?? null;
?>
<footer class="app-footer border-t border-slate-200 bg-white mt-8">
<div class="max-w-6xl mx-auto px-4 py-6 flex flex-wrap items-center gap-3 text-sm text-slate-500">
<span>© <?= date('Y') ?> Email Template System</span>
<?php if ($version): ?>
<span class="ms-auto inline-flex items-center gap-1 text-slate-600">
<span class="text-xs uppercase tracking-[0.2em] text-slate-400">Version</span>
<strong><?= htmlspecialchars($version) ?></strong>
</span>
<?php endif; ?>
</div>
</footer>