// Get the current full URL
document.addEventListener("DOMContentLoaded", function () {
var fullUrl = window.location.href;
var match = fullUrl.match(/^(https?:\/\/[^\/]+\/(?:[a-z]{2}(?:-[a-z]{2})?)?\/)/i);
var baseUrl = match ? match[1] : window.location.origin + '/';
var homeLink = document.querySelector('.home-link');
if (homeLink) {
homeLink.href = baseUrl;
}
console.log('home link: ' + baseUrl)
});
// end