// JavaScript code to change the text content of the paragraph with the class "t-entry-title"
document.addEventListener('DOMContentLoaded', (event) => {
// Select all elements matching the class ".t-entry-title"
const elements = document.querySelectorAll('.t-entry-title');
// Loop through the NodeList of selected elements and change their innerHTML
elements.forEach((element) => {
element.innerHTML = 'Aktuell sind keine Stellen ausgeschrieben';
});
});