mirror of
https://github.com/ivuorinen/generic-landing-page.git
synced 2026-02-05 08:45:11 +00:00
8 lines
244 B
JavaScript
8 lines
244 B
JavaScript
document.addEventListener('DOMContentLoaded', () => {
|
|
const container = document.querySelector('h1');
|
|
const hostname = window.location.hostname || document.title;
|
|
|
|
container.textContent = hostname;
|
|
document.title = hostname
|
|
});
|