Update home_en.html

This commit is contained in:
FURK4NGG
2025-04-05 14:48:46 +03:00
committed by GitHub
parent d63cfc8fd7
commit 7da3fcb2f6
+2 -1
View File
@@ -391,13 +391,14 @@
link.className = 'menu'; link.className = 'menu';
link.href = `${window.location.origin}/home_tr`; link.href = `${window.location.origin}/home_tr`;
link.textContent = 'TR'; link.textContent = 'TR';
link.setAttribute('aria-label', 'Türkçe sayfaya git');
// links-container içine ekle // links-container içine ekle
var container = document.querySelector('.links-container'); var container = document.querySelector('.links-container');
if (container) { if (container) {
container.appendChild(link); container.appendChild(link);
} }
}
}; };
const darkmode = new Darkmode(options); const darkmode = new Darkmode(options);
darkmode.showWidget(); darkmode.showWidget();