61 lines
2.3 KiB
HTML
Executable File
61 lines
2.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/adastyles.css">
|
|
<title>HectaBit Hall Of Fame</title>
|
|
<link rel="icon" href="favicon.svg">
|
|
</head>
|
|
<body>
|
|
<div class="sidebar">
|
|
<img src="/assets/img/hectabit.svg">
|
|
<h1>Main Website</h1>
|
|
<ul>
|
|
<li><a href="https://hectabit.org/" target="_blank">Home</a></li>
|
|
<li><a href="https://hectabit.org/donate" target="_blank">Donate</a></li>
|
|
<li><a href="https://hectabit.org/halloffame" target="_blank">Hall of fame</a></li>
|
|
</ul>
|
|
<h1>HectaBit Software</h1>
|
|
<ul>
|
|
<li><a href="https://centrifuge.hectabit.org" target="_blank">Centrifuge</a></li>
|
|
<li><a href="https://hectabit.org/evolutionos" target="_blank">EvolutionOS</a></li>
|
|
<li><a href="https://hectabit.org/st3" target="_blank">SuperTux 3D</a></li>
|
|
</ul>
|
|
<h1>HectaBit Services</h1>
|
|
<ul>
|
|
<li><a href="https://matrix.to/#/#devel:hectabit.org" target="_blank">Matrix</a></li>
|
|
<li><a href="https://notes.hectabit.org" target="_blank">Notes</a></li>
|
|
</ul>
|
|
<div class="spacer"></div>
|
|
<div class="spacer"></div>
|
|
<div class="spacer"></div>
|
|
</div>
|
|
<div class="content">
|
|
<h1>Welcome to HectaBit's Hall of fame!</h1>
|
|
<li><button id="sidebutton">Toggle Sidebar</button></li>
|
|
<li><h1>This is a hall of fame for all of the (amazing) members of HectaBit!</h1></li>
|
|
<div class="spacer"></div>
|
|
<div class="spacer"></div>
|
|
<li><p1>Tracker-Friendly (arzumify)<p1></li>
|
|
<li><p>Hey, thats me!<p></li>
|
|
<div class="spacer"></div>
|
|
<li><p1>JH915 (non-coder)<p1></li>
|
|
<li><p>Joined 11th of September 2023<p></li>
|
|
<div class="spacer"></div>
|
|
<li><p1>CrossLiner (Latte Softworks)</p1></li>
|
|
<li><p>Joined 14th of September 2023</p></li>
|
|
</div>
|
|
<script>
|
|
document.getElementById("sidebutton").addEventListener("click", function() {
|
|
var sidebar = document.querySelector(".sidebar");
|
|
var content = document.querySelector(".content");
|
|
sidebar.classList.toggle("hidden");
|
|
content.classList.toggle("expanded");
|
|
sidebar.classList.toggle("display");
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|