pogmom-suite/style/js/views.js
2025-02-18 11:16:59 -08:00

7 lines
311 B
JavaScript

fetch('/assets/views/header.html')
.then(response => response.text())
.then( resultText => document.getElementById('header').innerHTML = resultText );
fetch('/assets/views/footer.html')
.then(response => response.text())
.then( resultText => document.getElementById('footer').innerHTML = resultText );