Files
Portfolio-Esteban/elements/footer.php
T

21 lines
997 B
PHP

<?php
// Ce Footer sera inseré sur des pages grâce a la fonction require_once('./../elements/footer.php')
// Rappel des différentes pages : Acceuil, Projets, Contact
?>
</main>
<footer class="site-footer">
<div class="footer-content">
<p class="footer-copyright">
<!-- Logo droit d'auteur + année -->
&copy; <?php echo date('Y'); ?> - Portfolio développé par Moussu Esteban
</p>
<div class="footer-links">
<a href="https://www.linkedin.com/in/estebanmoussu/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
<a href="https://www.instagram.com/ours_one_" target="_blank" rel="noopener noreferrer">Instagram</a>
<a href="https://git.eldorianet.work/esteban" target="_blank" rel="noopener noreferrer">Git</a>
<span class="discord-handle" title="@ours1" onclick="alert('Discord : @ours1')">Discord</span>
<a href="../pages/cgu.php">CGU</a>
</div>
</div>
</footer>