document.addEventListener("DOMContentLoaded", function() {
const links = document.querySelectorAll("a[href^='http://'], a[href^='https://']");
links.forEach(function(link) {
if (link.href.indexOf(location.hostname) === -1) {
link.setAttribute("target", "_blank");
link.setAttribute("rel", "nofollow");
}
});
});