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

55
docs/index.html Normal file
View File

@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Phigros Android History</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/" class="active">Home</a></li>
<li><a href="versions">Versions</a></li>
<li><a href="install">Install Guide</a></li>
</ul>
</nav>
</header>
<main class="container">
<h1>Phigros Android History</h1>
<p>This project is a collection and archive of different versions of <strong>Phigros</strong> on Android.</p>
<p>Youll find changelogs, download links, installation help, and more, carefully organized for both <strong>G</strong> (Google Play), <strong>T</strong> (TapTap), and other versions.</p>
<p><strong>(Still in progress)</strong></p>
<p id="download-count">Loading downloads...</p>
<h2><a href="https://github.com/lolmam/Phigros-Android-History">View Project on GitHub</a></h2>
<div class="cta-buttons">
<a href="versions" class="btn">View Versions</a>
<a href="install" class="btn alt">How to Install</a>
</div>
</main>
<footer>
<p>&copy; 2025 phigros.lolmam.top - made with ❤️ for archival purposes</p>
</footer>
</body>
</html>
<script>
fetch("https://files.phigros.lolmam.top/stats")
.then(res => res.text())
.then(text => {
document.getElementById("download-count").innerText = text;
})
.catch(err => {
document.getElementById("download-count").innerText = "Couldn't load download count.";
console.error("Failed to load count:", err);
});
</script>