Files
xeorl/htdocs/assets/_footer.php
2025-02-06 14:48:46 +05:30

27 lines
1.2 KiB
PHP
Executable File

<link rel="stylesheet" href="assets/css/_footer.css">
<footer>
<div class="footer-container" style="user-select: none;">
<p>
<img src="assets/images/url.svg" class="footer-img">
<span class="footer-p1">Xeorl</span>
<span class="footer-p2">open source</span> <br>
<span class="footer-p3">Released under MIT License | Copyright © </span>
<script>
document.addEventListener('DOMContentLoaded', (event) => {
const yearSpan = document.createElement('span');
yearSpan.textContent = new Date().getFullYear();
document.querySelector('.footer-p3').appendChild(yearSpan);
});
</script>
</p>
<div class="footer-links">
<a href="https://docs.google.com/document/d/1sZ2TwjST8nKaRl-rSteAd2XHlVZdDhgS6jHRKwjDedc/edit?usp=sharing">Privacy</a>
<a href="https://docs.google.com/document/d/1QcUohit6U3ZmWyOZbggbpUr2KrQ6pwy3X-R4zUGfZBo/edit?usp=sharing">Terms</a>
<a href="home.php">Contact</a>
<a href="https://github.com/xodivorce/xeorl" target="_blank" >Github</a>
</div>
</div>
</footer>
</body>
</html>