Archives
Archives des feuilles paroissiales
Retrouvez ici les feuilles paroissiales classées par année, mois et date, mais aussi d’autres documents importants de notre paroisse. Vous pouvez aussi utiliser le moteur de recherche.
2026
2025
Novembre 2025
document.addEventListener('DOMContentLoaded', function() {
const input = document.getElementById('archive-search');
if (!input) return;
input.addEventListener('input', function() {
const query = this.value.toLowerCase().trim();
const years = document.querySelectorAll('.archives-feuilles .archive-year');
years.forEach(year => {
let yearHasMatch = false;
const months = year.querySelectorAll('.archive-month');
months.forEach(month => {
let monthHasMatch = false;
const entries = month.querySelectorAll('.archive-entry');
entries.forEach(entry => {
const text = entry.textContent.toLowerCase();
const match = !query || text.includes(query);
entry.style.display = match ? '' : 'none';
if (match) monthHasMatch = true;
});
// Affiche / masque le mois selon s'il a un match
month.style.display = monthHasMatch ? '' : 'none';
if (monthHasMatch) yearHasMatch = true;
});
// Affiche / masque l'année selon s'il reste un mois avec résultat
year.style.display = yearHasMatch ? '' : 'none';
});
});
});
document.addEventListener('DOMContentLoaded', function() {
const input = document.getElementById('archive-search');
if (!input) return;
input.addEventListener('input', function() {
const query = this.value.toLowerCase().trim();
const years = document.querySelectorAll('.archives-feuilles .archive-year');
years.forEach(year => {
let yearHasMatch = false;
const months = year.querySelectorAll('.archive-month');
months.forEach(month => {
let monthHasMatch = false;
const entries = month.querySelectorAll('.archive-entry');
entries.forEach(entry => {
const text = entry.textContent.toLowerCase();
const match = !query || text.includes(query);
entry.style.display = match ? '' : 'none';
if (match) monthHasMatch = true;
});
// Affiche / masque le mois selon s'il a un match
month.style.display = monthHasMatch ? '' : 'none';
if (monthHasMatch) yearHasMatch = true;
});
// Affiche / masque l'année selon s'il reste un mois avec résultat
year.style.display = yearHasMatch ? '' : 'none';
});
});
});