mirror of
https://gitlab.com/lolmam/Phigros-Android-History.git
synced 2026-02-04 16:21:11 +00:00
55 lines
1.9 KiB
HTML
55 lines
1.9 KiB
HTML
<!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>You’ll 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://gitlab.com/lolmam/Phigros-Android-History">View Project on GitLab</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>© 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> |