Generic landing page

This commit is contained in:
Ismo Vuorinen
2021-04-21 19:55:25 +03:00
parent 7ebf635373
commit ada0cca491
8 changed files with 13017 additions and 0 deletions

7
src/app.js Normal file
View File

@@ -0,0 +1,7 @@
document.addEventListener('DOMContentLoaded', () => {
const container = document.querySelector('h1');
const hostname = window.location.hostname || document.title;
container.textContent = hostname;
document.title = hostname
});