add news and start for the shop

This commit is contained in:
xgui4
2026-06-11 19:56:15 -04:00
parent e1ac7edbd1
commit b094bcf25a
4 changed files with 45 additions and 6 deletions

View File

@@ -226,15 +226,13 @@
<li><a href="https://git.revela.dev/itsRevela/LCE-Revelations">LCE-Revelation community</a></li>
<li><a href="https://github.com/LCE-Hub">LCE Hub Communiy</a> for the Marketplace/Workshop</li>
<li><a href="https://github.com/MinecraftConsole">MinecraftLegacy Community</a> to include my launcher in
their
list</li>
their list</li>
<li><a href="https://github.com/IdreesInc/Miracode">Miracode Font</a></li>
<li><a href="https://github.com/IdreesInc/Monocraft">Monocraft Font</a></li>
<li><a href="https://github.com/sonic2kk/steamtinkerlaunch">Steam Tinker Launch</a> for Steam and SteamDeck
integration on GNU/Linux via their software.</li>
<li>and also everyone in the LCE community to continue the legacy of Legacy Console Edition and where some
of
the images assets came from.</li>
of the images assets came from.</li>
<li>and to Notch (Markus Persson), 4J Studio and Mojang to make this game in the first place</li>
</ul>

18
www/js/generate_shop.js Normal file
View File

@@ -0,0 +1,18 @@
let contents = {};
fetch('https://code.nolog.cz/xgui4/lce-qt-launcher-data/raw/branch/master/database.json')
.then(response => response.json())
.then(data => {
contents = data;
contents.forEach(element => {
console.log("name :", element["name"])
console.log("version :", element["version"])
console.log("icon :", element["icon"])
console.log("instance_file :", element["instance_file"])
console.log("background :", element["background"])
console.log("type :", element["type"])
});
})
.catch(err => console.error(err));

View File

@@ -20,8 +20,8 @@
</header>
<main>
<h1>News</h1>
<h2>Start of the news pages</h2>
<p>This is the start of this page</p>
<h2>11 June - Added The Skin Manager</h2>
<p> Added Skin Manager to the Site and Launcher (experimental)</p>
</main>
</body>
</html>

23
www/shop.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LCE Qt Launcher - Shop</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<a class="nav-link" href="index.html"><img src="assets/favicon.png" /></a>
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link active" aria-current="page" href="#">Marketplace</a>
<a class="nav-link" href="skins.html">Skin Manager</a>
<a class="nav-link" href="download.html">Download Center</a>
<a class="nav-link" href="news.html">News</a>
</nav>
</header>
<main>
</main>
</body>
</html>