1
0
mirror of https://gitlab.com/lolmam/Phigros-Android-History.git synced 2026-02-04 16:21:11 +00:00

initial clean commit after repo reset

This commit is contained in:
lolmam
2025-07-17 00:28:09 +03:00
commit fb18adf11f
18 changed files with 6432 additions and 0 deletions

59
docs/versions/index.html Normal file
View File

@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Phigros Versions</title>
<link rel="stylesheet" href="../style/style.css" />
<link href="https://fonts.googleapis.com/css2?family=Exo:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="../style/1.X.N.png">
</head>
<body>
<div class="background"></div>
<header>
<nav>
<ul>
<li><a href="https://phigros.lolmam.top/">Home</a></li>
<li class="has-submenu">
<a href="#" class="active" onclick="toggleSubmenu(event)">Versions</a>
<ul class="submenu">
<li><a href="versions_1.x">1.X</a></li>
<li><a href="versions_2.x">2.X</a></li>
<li><a href="versions_3.x">3.X</a></li>
</ul>
</li>
<li><a href="../install">Install Guide</a></li>
</ul>
</nav>
</header>
<main class="container">
<h1>All Phigros Versions</h1>
<h2>(Still in progress)</h2>
<p>Select a main version to explore it's sub versions</p>
<div class="cta-buttons">
<a href="versions_3.x" class="btn">3.X Versions</a>
<a href="versions_2.x" class="btn">2.X Versions</a>
<a href="versions_1.x" class="btn">1.X Versions</a>
</div>
</div>
</main>
<footer>
<p>&copy; 2025 phigros.lolmam.top - made with ❤️ for archival purposes</p>
</footer>
</body>
</html>
<script>
function toggleSubmenu(e) {
e.preventDefault();
const parent = e.target.closest('.has-submenu');
parent.classList.toggle('open');
}
</script>