Aller au contenu
document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.calq-wrap a').forEach(function(link) {
// On bloque tout sauf le bouton "Afficher plus de projets"
if (!link.classList.contains('calq-loadmore')) {
link.addEventListener('click', function(e) {
e.preventDefault();
e.stopPropagation();
});
}
});
});