mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 20:15:27 +00:00
21 lines
395 B
Plaintext
21 lines
395 B
Plaintext
---
|
|
---
|
|
|
|
<script>
|
|
function setActiveLink() {
|
|
const links = document.querySelectorAll('.navigation a');
|
|
const currentPath = window.location.pathname;
|
|
console.log(currentPath);
|
|
|
|
links.forEach((link) => {
|
|
if (link.getAttribute('href') === currentPath) {
|
|
link.classList.add('is-active');
|
|
} else {
|
|
link.classList.remove('is-active');
|
|
}
|
|
});
|
|
}
|
|
|
|
setActiveLink();
|
|
</script>
|