Danke für deine Geduld. Wir arbeiten gerade an der Website und sind in Kürze wieder zurück.
document.addEventListener("DOMContentLoaded", function () {
let robotsMeta = document.querySelector('meta[name="robots"]');
if (robotsMeta) {
robotsMeta.setAttribute("content", "noindex, nofollow");
} else {
let meta = document.createElement("meta");
meta.name = "robots";
meta.content = "noindex, nofollow";
document.head.appendChild(meta);
}
});