document.addEventListener("DOMContentLoaded", function () {
var isGerman = window.location.pathname.indexOf('/de/') > -1 || window.location.pathname === '/de';
var section = document.createElement("div");
section.className = "ferizz-instagram-section";
section.innerHTML = `
${isGerman ? '📸 Folge uns auf Instagram' : '📸 Instagram\'da Bizi Takip Edin'}
@ferizzofficial
`;
var footer = document.getElementById("divFooter") ||
document.querySelector("footer") ||
document.querySelector("#divTicimaxCopyrightContent");
if (footer) {
footer.parentNode.insertBefore(section, footer);
} else {
document.body.appendChild(section);
}
});