11 lines
614 B
PHP
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">© <?= 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>
|