mirror of
https://github.com/System-End/Team_Website.git
synced 2026-04-19 22:05:15 +00:00
57 lines
2 KiB
HTML
57 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="/Resources/Favicons/favicon.png"
|
|
/>
|
|
<link rel="stylesheet" href="/Pages/style.css" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<script>
|
|
window.addEventListener("DOMContentLoaded", (event) => {
|
|
fetch("/Pages/navbar.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("navbar").innerHTML = data;
|
|
});
|
|
fetch("/Pages/socials.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("socials").innerHTML = data;
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body class="flex flex-col min-h-screen">
|
|
<!--Navigation Bar-->
|
|
<header id="navbar" class="mb-16"></header>
|
|
|
|
<!-- Body -->
|
|
<main class="flex-grow flex flex-col">
|
|
<div class="flex justify-center items-center">
|
|
<h1 class="text-3xl font-bold px-4">Calendar</h1>
|
|
<img
|
|
src="/Resources/Icons/calendar.png"
|
|
class="w-20"
|
|
alt="Team Icon"
|
|
/>
|
|
</div>
|
|
<div class="flex-grow relative overflow-hidden">
|
|
<iframe
|
|
class="absolute top-0 left-0 w-full h-full p-4"
|
|
src="https://calendar.google.com/calendar/embed?src=c_classroomf63767d2%40group.calendar.google.com&ctz=America%2FPhoenix"
|
|
style="border: 0"
|
|
frameborder="0"
|
|
scrolling="no"
|
|
></iframe>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer id="socials"></footer>
|
|
</body>
|
|
</html>
|