ChangelogApp/index.html

41 lines
1.2 KiB
HTML

<!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/tailwindcss@2.2.19/dist/tailwind.min.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">
<!--Header-->
<div id="header"></div>
<!--Home-->
<div id="homeDiv"></div>
<!--Days-->
<div id="pushDiv" style="display: none;"></div>
<!--Settings-->
<div id="settingsDiv" style="display: none;"></div>
<!--Footer-->
<div id="footer"></div>
<script src="components/js/frontend_handle.js"></script>
</body>
</html>