mirror of
https://github.com/len0rd/personal-website.git
synced 2025-07-04 19:37:15 -04:00
9 lines
306 B
JavaScript
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;
|
|
}
|
|
});
|