footer.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <footer class="footer footer-color" style="color:#ffffff;">
  2. <div class="container">
  3. <div class="footer__content">
  4. <div class="footer__logo">
  5. <?php if (!empty($footerLogo['src'])): ?>
  6. <a href="<?= $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] ?>">
  7. <img src="<?= htmlspecialchars($footerLogo['src']) ?>" alt="<?= $footerLogo['alt'] ?? '' ?>" title="<?= $footerLogo['title'] ?? '' ?>">
  8. </a>
  9. <?php endif; ?>
  10. </div>
  11. <div class="footer__text">
  12. <?= $content['footer__text'] ?? '' ?>
  13. </div>
  14. <!-- <div class="footer__menu">
  15. <ul>
  16. <li><a class="redirect-js" href="">About us</a></li>
  17. <li><a class="redirect-js" href="">Responsible gambling</a></li>
  18. </ul>
  19. </div> -->
  20. </div>
  21. <ul class="footer__menu">
  22. <li><a href="<?=$currentDomain.'/contacts' ?>"><?= $content['contact-menu-name'] ?? '' ?></a></li>
  23. </ul>
  24. <ul class="footer__bottom-imgs">
  25. <li><span><img data-src="images/18+.png" class="lazy" alt="18+" title="18+" width="40" height="40"></span></li>
  26. <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>
  27. <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>
  28. <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>
  29. <li><img height="40" width="126" class="lazy" data-src="images/ecogra.png" alt="eCOGRA" title="eCOGRA"></li>
  30. <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>
  31. </ul>
  32. <div class="footer__copyright">
  33. <?= $content['copyright'] ?? '' ?>
  34. </div>
  35. </div>
  36. </footer>