<script>
const linkMapping = {
'item01': {
from: '/mars-rising/the-realm-of-atum',
to: 'https://www.vsindustries.net/the-realm-of-atum'
},
'item02': {
from: '/mars-rising/the-realm-of-nun',
to: 'https://www.vsindustries.net/the-realm-of-nun'
},
'item03': {
from: '/mars-rising/the-red-realm',
to: 'https://www.vsindustries.net/the-red-realm'
}
};
function updateLinks() {
Object.values(linkMapping).forEach(mapping => {
const links = document.querySelectorAll(`a[href="${mapping.from}"]`);
links.forEach(link => {
link.setAttribute('href', mapping.to);
});
});
}
window.addEventListener('load', updateLinks);
</script>