document.addEventListener('DOMContentLoaded', function () {
var img = document.querySelector('.header-image');
if (img && img.parentElement.tagName !== 'A') {
var link = document.createElement('a');
link.href = '/';
link.setAttribute('aria-label', 'Ir al inicio');
img.parentNode.insertBefore(link, img);
link.appendChild(img);
}
});