footer.php 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. $content = (new \App\Settings('content'))->getAll();
  3. $footerLogo = json_decode($content['footer-logo'] ?? '{}', true);
  4. $currentDomain = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'];
  5. $menuItems = json_decode($content['menu'] ?? '[]', true);
  6. ?>
  7. <footer class="footer">
  8. <div class="footer__content">
  9. <div class="container footer__content-inner">
  10. <div class="footer__logo">
  11. <?php if (!empty($footerLogo['src'])): ?>
  12. <a href="<?= $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] ?>">
  13. <img src="<?= htmlspecialchars($footerLogo['src']) ?>" alt="<?= $footerLogo['alt'] ?? '' ?>" title="<?= $footerLogo['title'] ?? '' ?>">
  14. </a>
  15. <?php endif; ?>
  16. </div>
  17. <div class="footer__text">
  18. <p>Casino.online is an independent team providing information about Megaways slots in the UK.
  19. We provide the latest and safest information about casino games.
  20. On our website you will find free Megaways slots, casino bonuses and a list of online casinos to play.
  21. We offer honest information that we verify ourselves.</p>
  22. </div>
  23. </div>
  24. </div>
  25. <!-- footer partners -->
  26. <div class="footer__partners">
  27. <div class="container">
  28. <ul class="footer__bottom-imgs">
  29. <li><span><img data-src="images/18+.png" class="lazy" alt="18+" title="18+" width="40" height="40"></span></li>
  30. <li><a href="https://www.begambleaware.org/" rel="nofollow noopener" target="_blank"><img height="40" width="252" class="lazy" data-src="images/GA.png" alt="BeGambleAware" title="BeGambleAware"></a></li>
  31. <li><a href="https://itechlabs.com/" rel="nofollow noopener" target="_blank"><img height="40" width="40" class="lazy" data-src="images/itechlabs.png" alt="iTech Labs" title="iTech Labs"></a></li>
  32. <li><a href="https://www.mga.org.mt/" rel="nofollow noopener" target="_blank"><img height="40" width="92" class="lazy" data-src="images/mga.png" alt="MGA" title="MGA"></a></li>
  33. <li><img height="40" width="126" class="lazy" data-src="images/ecogra.png" alt="eCOGRA" title="eCOGRA"></li>
  34. <li><a href="https://gaminglabs.com/" rel="nofollow noopener" target="_blank"><img height="46" width="86" class="lazy" data-src="images/GLI.png" alt="GLI" title="GLI"></a></li>
  35. </ul>
  36. </div>
  37. </div>
  38. <!-- footer menu -->
  39. <div class="footer__menu">
  40. <div class="container">
  41. <ul class="footer__menu-list">
  42. <?php foreach ($menuItems as $menuItem): ?>
  43. <li class="footer__menu-item">
  44. <a href="<?= htmlspecialchars($menuItem['anchor'] ?? '') ?>" class="footer__menu-link">
  45. <?= htmlspecialchars($menuItem['title'] ?? '') ?>
  46. </a>
  47. </li>
  48. <?php endforeach; ?>
  49. </ul>
  50. </div>
  51. </div>
  52. <!-- footer copyrights -->
  53. <div class="footer__copyright">
  54. <?= $content['copyright'] ?? '' ?>
  55. </div>
  56. </footer>