-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.24 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Changelog App</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="./components/css/main.css" rel="stylesheet">
<script defer src="components/js/renderer.js"></script>
</head>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function () {
$("#header").load("./components/html/header.html");
$("#homeDiv").load("./components/html/home.html");
$("#pushDiv").load("./components/html/push.html");
$("#settingsDiv").load("./components/html/settings.html");
$("#footer").load("./components/html/footer.html");
});
</script>
<body class="bg-gray-900 text-gray-100">
<div id="header"></div>
<div id="homeDiv"></div>
<div id="pushDiv" style="display: none;"></div>
<div id="settingsDiv" style="display: none;"></div>
<!--Footer-->
<div id="footer"></div>
<script src="components/js/frontend_handle.js"></script>
</body>
</html>