64 lines
2.2 KiB
HTML
64 lines
2.2 KiB
HTML
<!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>
|
||
<!-- Add CyberChef link: place the CyberChef build folder at webroot/cyberchef/ -->
|
||
<a href="cyberchef/CyberChef_v10.19.4.html" target="_blank" rel="noopener noreferrer">CyberChef</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>© 2025 Dateisystem Offset-Rechner. Public Domain unter BSD-3-Clause.</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<script type="module" src="js/main.js"></script>
|
||
</body>
|
||
|
||
</html> |