Files
gravity/ส่งออกข้อมูลประชากร HOSxP/footer.php
T
2026-09-16 23:20:08 +07:00

18 lines
1.0 KiB
PHP

<?php
// footer.php
$footer_text = getSystemSetting('footer_text', 'หน่วยงานสุขภาพดิจิทัล โรงพยาบาลเกาะสมุย');
?>
<!-- Global Footer -->
<footer class="bg-white border-t border-gray-200 mt-auto py-6">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 flex flex-col md:flex-row justify-between items-center gap-4">
<div class="flex-1"></div>
<div class="flex-1 text-center text-gray-600 text-sm">
&copy; <?php echo date('Y') + 543; ?> <?php echo htmlspecialchars($footer_text); ?>
</div>
<div class="flex-1 flex justify-end items-center text-gray-500 text-xs">
<span class="mr-2">Powered By น้องมะลิ</span>
<img src="assets/img/mali.jpg" alt="น้องมะลิ" class="h-8 w-8 rounded-full object-cover border border-gray-300" onerror="this.src='https://ui-avatars.com/api/?name=มะลิ&background=fdf4ff&color=c026d3';">
</div>
</div>
</footer>