mirror of
https://github.com/System-End/Team_Website.git
synced 2026-04-19 23:22:57 +00:00
44 lines
1.3 KiB
HTML
44 lines
1.3 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>
|
|
<title>Showcase Page</title>
|
|
</head>
|
|
|
|
<body>
|
|
<!--Navigation Bar-->
|
|
<div id="navbar"></div>
|
|
<h1></h1>
|
|
<h1>Shuffled Photos and Videos</h1>
|
|
<div id="mediaContainer"></div>
|
|
|
|
<script src="/Pages/showcase.js"></script>
|
|
</body>
|
|
<h1></h1>
|
|
<h1></h1>
|
|
|
|
<!-- Footer -->
|
|
<div id="socials"></div>
|
|
</html>
|