personal-website/_static/update_title.js
2025-05-28 11:56:50 -04:00

9 lines
306 B
JavaScript

// update the title at the top of the document to match the hostname
// used to request the blog
document.addEventListener("DOMContentLoaded", function () {
var logoTitle = document.querySelector(".logo__title");
if (logoTitle) {
logoTitle.textContent = window.location.hostname;
}
});