Agenda

Avondvierdaagse
Na vier avonden wandelen halen wij de wandelaars feestelijk in!
22 mei 2025 - Inhalen avondvierdaagse, op het dorp bij het kleine kerkje.

Zomerorkest
In de zomer blijven wij heerlijk muziek maken!
13, 20 en 23 augustus 2025 - Zomerorkest
document.addEventListener("DOMContentLoaded", () => {
// Select all articles with the class "agenda-punten"
const articles = document.querySelectorAll("article.agenda-punten");
articles.forEach((article) => {
// Select the elements
const featuredImage = article.querySelector(".entry-featured-image-url");
const customFields = article.querySelector(".acf-custom-fields");
const entryTitle = article.querySelector(".entry-title");
// Check if the required elements exist
if (featuredImage && customFields && entryTitle) {
// Move the customFields to be after the featuredImage and before the entryTitle
article.insertBefore(customFields, entryTitle);
}
});
});