added some functionality to the archive section

needs a lot more work
This commit is contained in:
Currency
2024-12-13 11:40:08 +01:00
parent 9e4933aad9
commit bf2d09cd27
22 changed files with 1033 additions and 27 deletions

View File

@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Repository Explorer - Map Makers & Programmers</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../../../css/styles.css">
<link rel="stylesheet" href="../../../css/explorer.css">
</head>
<body>
<div class="noise-overlay"></div>
<div class="overlay">
<div class="page-header">
<a href="../../archives.html" class="back-button">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 18l-6-6 6-6" />
</svg>
Back
</a>
<h1 class="page-title" id="repo-name">Repository</h1>
</div>
<main class="repo-explorer">
<div class="breadcrumb" id="breadcrumb">
<!-- loaded with script -->
</div>
<div class="file-tree" id="file-tree">
<!-- loaded with script -->
</div>
<div class="readme-section" id="readme-container">
<!-- loaded with script -->
</div>
</main>
<footer class="site-footer">
<div class="footer-content">
<p>&copy; 2024 Map Makers & Programmers. A few rights reserved...</p>
</div>
</footer>
</div>
<script src="explorer.js"></script>
</body>
</html>