Move current guides to begin different language support

This commit is contained in:
BloxerHD 2026-06-28 23:08:43 +01:00
commit 3c3f17fff6
Signed by: bloxerhd018
SSH key fingerprint: SHA256:ItSfcfhpXlfkMK3uQSDYW5X3XKm0hbHWQqWcCK57px8
6 changed files with 4 additions and 2 deletions

View file

@ -5,10 +5,10 @@ const params = new URLSearchParams(window.location.search);
const guideParam = params.get("guide");
let guide = "install-wiiu";
let guidePath = '/md/install-wiiu.md';
let guidePath = '/md/en/install-wiiu.md';
if (guideParam) {
guide = guideParam;
guidePath = `/md/${guide}.md`;
guidePath = `/md/en/${guide}.md`;
}
fetch(guidePath)