fscalc/webroot/index.html
2025-10-21 22:27:08 +02:00

62 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dateisystem-Offset-Rechner</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/components.css">
</head>
<body>
<header class="header">
<div class="header-content">
<div class="logo">Dateisystem-Offset-Rechner</div>
<nav class="nav">
<a href="#home">Start</a>
<a href="mailto:mstoeck3@hs-mittweida.de">Kontakt</a>
</nav>
</div>
</header>
<div class="info-toast">
<div class="toast-content">
💡 <strong>Tipp:</strong> Erstellen Sie eigene Dateisystem-Images mit
<a href="https://github.com/overcuriousity/pseudodisk" target="_blank" rel="noopener"><strong>pseudodisk</strong></a>
einem interaktiven Bash-Script zum Erstellen, Mounten und Analysieren von Dateisystemen via mkfs und Hex-Editor.
</div>
</div>
<main class="main-content">
<div class="container">
<!-- Dynamic tabs will be inserted here -->
<div id="filesystem-tabs" class="tabs"></div>
<!-- Dynamic tab content will be inserted here -->
<div id="filesystem-content"></div>
</div>
</main>
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>Über</h3>
<p>Dateisystem Offset-Rechner für Bildung und Forensik.</p>
<p>Version 0.5.0</p>
</div>
<div class="footer-section">
<h3>Support</h3>
<a href="mailto:mstoeck3@hs-mittweida.de">Kontakt</a>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2025 Dateisystem Offset-Rechner. Public Domain unter BSD-3-Clause.</p>
</div>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>