-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (33 loc) · 1.23 KB
/
index.html
File metadata and controls
38 lines (33 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script>
function includeHTML() {
const elements = document.querySelectorAll("[data-include-html]");
elements.forEach(el => {
const file = el.getAttribute("data-include-html");
fetch(file)
.then(response => response.text())
.then(data => el.innerHTML = data)
.catch(error => console.error(`Error loading ${file}:`, error));
});
}
document.addEventListener("DOMContentLoaded", includeHTML);
</script>
<title>pcannon09's documentation list</title>
<link rel="icon" type="image/x-icon" href="/docs/rsrc/imgs/favicon.png">
<base href="/">
</head>
<body>
<div>
pcannon09's documentation list
</div> <br>
<div> <a href="https://www.github.com/pcannon09"> Go to `pcannon09's` repo </a> </div> <br>
<div> Documentations: </div>
<div> <a href="/docs/pages/libs/libs.html"> Go to `pcannon09's` libs documentations </a> </div> <br>
<br> <div> --------------- </div> <br>
<div data-include-html="/docs/pages/libs/libs.html"></div>
<br> <div> --------------- </div> <br>
</body>
</html>