38394-vm/includes/footer.php
2026-02-13 12:13:01 +00:00

11 lines
614 B
PHP

<footer class="text-center">
<div class="container">
<?php if (!empty($profile['logo_url'])):
?>
<img src="<?= htmlspecialchars($profile['logo_url']) ?>" class="footer-logo" alt="Logo">
<?php endif; ?>
<p class="text-muted small">&copy; <?= date('Y') ?> <?= htmlspecialchars($lang === 'en' ? ($profile['name_en'] ?? 'Organization') : ($profile['name_ar'] ?? 'المؤسسة')) ?>. All rights reserved.</p>
<p class="text-muted small">Address, City, Country</p>
<p class="text-muted small">Phone: +123456789 | Email: info@example.com</p>
</div>
</footer>