initial commit

This commit is contained in:
Zastian Pretorius
2024-05-08 13:55:26 +01:00
commit c31b86fa01
12 changed files with 2118 additions and 0 deletions

17
public/pages/loadSrc.js Normal file
View File

@@ -0,0 +1,17 @@
function loadSrc() {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = '/pages/style.css';
document.head.appendChild(link);
var script = document.createElement('script');
script.src = '/pages/sidebar.js';
document.head.appendChild(script);
var script = document.createElement('script');
script.src = '/pages/people.js';
document.head.appendChild(script);
}
// Call the function to load src.html
loadSrc();