38751-vm/views/footer.php
2026-02-24 23:03:19 +00:00

63 lines
3.8 KiB
PHP

</main>
<footer class="bg-white border-top py-5">
<div class="container">
<div class="row g-4">
<div class="col-lg-4">
<a class="navbar-brand fw-bold text-success d-flex align-items-center" href="/">
<?php if (get_setting('site_icon')): ?>
<img src="/<?php echo get_setting('site_icon'); ?>" alt="Logo" class="me-2" style="height: 30px;">
<?php else: ?>
<i class="bi bi-robot"></i>
<?php endif; ?>
<?php echo htmlspecialchars(get_setting('site_name', 'ApkNusa')); ?>
</a>
<p class="text-muted mt-3 pe-lg-5">
<?php echo htmlspecialchars(get_setting('site_name', 'ApkNusa')); ?> is your premier source for professional APK downloads, offering the latest and safest Android applications and games.
</p>
</div>
<div class="col-6 col-lg-2">
<h6 class="fw-bold mb-3">Popular</h6>
<ul class="list-unstyled">
<li><a href="#" class="text-muted text-decoration-none py-1 d-block small">Top Games</a></li>
<li><a href="#" class="text-muted text-decoration-none py-1 d-block small">Top Apps</a></li>
<li><a href="#" class="text-muted text-decoration-none py-1 d-block small">New Releases</a></li>
</ul>
</div>
<div class="col-6 col-lg-2">
<h6 class="fw-bold mb-3">Resources</h6>
<ul class="list-unstyled">
<li><a href="#" class="text-muted text-decoration-none py-1 d-block small">Support Center</a></li>
<li><a href="#" class="text-muted text-decoration-none py-1 d-block small">Terms of Service</a></li>
<li><a href="#" class="text-muted text-decoration-none py-1 d-block small">Privacy Policy</a></li>
</ul>
</div>
<div class="col-lg-4">
<h6 class="fw-bold mb-3">Subscribe</h6>
<p class="text-muted small">Stay updated with the latest APK releases.</p>
<div class="input-group">
<input type="email" class="form-control border-light-subtle" placeholder="Your email address">
<button class="btn btn-success px-3" type="button">Subscribe</button>
</div>
</div>
</div>
<hr class="my-5 text-black-50 opacity-25">
<div class="row align-items-center">
<div class="col-md-6 text-center text-md-start">
<span class="text-muted small">&copy; <?php echo date('Y'); ?> <?php echo htmlspecialchars(get_setting('site_name', 'ApkNusa')); ?>. All rights reserved.</span>
</div>
<div class="col-md-6 text-center text-md-end mt-3 mt-md-0">
<div class="d-flex justify-content-center justify-content-md-end gap-3">
<a href="#" class="text-muted"><i class="bi bi-facebook"></i></a>
<a href="#" class="text-muted"><i class="bi bi-twitter-x"></i></a>
<a href="#" class="text-muted"><i class="bi bi-instagram"></i></a>
<a href="#" class="text-muted"><i class="bi bi-github"></i></a>
</div>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="/assets/js/main.js"></script>
<?php echo get_setting('body_js'); ?>
</body>
</html>