mirror of
https://github.com/rvtr/wiki.git
synced 2025-10-31 06:31:13 -04:00
Move manual 3DS instructions to the main 3DS page
The old page is kept as a redirect for now
This commit is contained in:
parent
6dbaf24dce
commit
c140c060c1
@ -1,47 +1,45 @@
|
|||||||
<head>
|
<meta charset="utf-8">
|
||||||
<meta charset="utf-8">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<title>
|
<title>
|
||||||
{% if site.data[page.collection].strings.title != page.title %}
|
{% if site.data[page.collection].strings.title != page.title %}
|
||||||
{{ page.title }} |
|
{{ page.title }} |
|
||||||
{% endif %}
|
|
||||||
{{ site.data[page.collection].strings.title }}
|
|
||||||
</title>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
||||||
{% if site.data.rtl contains page.collection %}
|
|
||||||
<link id="bootstrap-stylesheet" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.rtl.min.css" integrity="sha384-mUkCBeyHPdg0tqB6JDd+65Gpw5h/l8DKcCTV2D2UpaMMFd7Jo8A+mDAosaWgFBPl" crossorigin="anonymous">
|
|
||||||
{% else %}
|
|
||||||
<link id="bootstrap-stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{{ site.data[page.collection].strings.title }}
|
||||||
|
</title>
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" media="screen" href="/assets/css/style.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||||
|
{% if site.data.rtl contains page.collection %}
|
||||||
|
<link id="bootstrap-stylesheet" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.rtl.min.css" integrity="sha384-mUkCBeyHPdg0tqB6JDd+65Gpw5h/l8DKcCTV2D2UpaMMFd7Jo8A+mDAosaWgFBPl" crossorigin="anonymous">
|
||||||
|
{% else %}
|
||||||
|
<link id="bootstrap-stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% include favicon.html %}
|
<link rel="stylesheet" type="text/css" media="screen" href="/assets/css/style.css">
|
||||||
{% include seo.html %}
|
|
||||||
|
|
||||||
{% if page.collection == "ic-IC" %}
|
{% include favicon.html %}
|
||||||
<script>
|
{% include seo.html %}
|
||||||
var _jipt = [];
|
|
||||||
_jipt.push(['project', 'ds-homebrew-wiki']);
|
|
||||||
_jipt.push(['escape', function() {
|
|
||||||
window.location.href = "http://wiki.ds-homebrew.com";
|
|
||||||
}]);
|
|
||||||
|
|
||||||
let langCheck = setInterval(() => {
|
{% if page.collection == "ic-IC" %}
|
||||||
let selectedLang = document.getElementsByClassName("crowdin-jipt")?.[4]?.contentWindow.document.getElementById("jipt-target-languages").value;
|
<script>
|
||||||
if(selectedLang) {
|
var _jipt = [];
|
||||||
clearInterval(langCheck);
|
_jipt.push(['project', 'ds-homebrew-wiki']);
|
||||||
if(["he"].includes(selectedLang)) {
|
_jipt.push(['escape', function() {
|
||||||
document.dir = "rtl";
|
window.location.href = "http://wiki.ds-homebrew.com";
|
||||||
let bootstrapStylesheet = document.getElementById("bootstrap-stylesheet");
|
}]);
|
||||||
bootstrapStylesheet.integrity = "sha384-mUkCBeyHPdg0tqB6JDd+65Gpw5h/l8DKcCTV2D2UpaMMFd7Jo8A+mDAosaWgFBPl";
|
|
||||||
bootstrapStylesheet.href = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.rtl.min.css";
|
let langCheck = setInterval(() => {
|
||||||
}
|
let selectedLang = document.getElementsByClassName("crowdin-jipt")?.[4]?.contentWindow.document.getElementById("jipt-target-languages").value;
|
||||||
|
if(selectedLang) {
|
||||||
|
clearInterval(langCheck);
|
||||||
|
if(["he"].includes(selectedLang)) {
|
||||||
|
document.dir = "rtl";
|
||||||
|
let bootstrapStylesheet = document.getElementById("bootstrap-stylesheet");
|
||||||
|
bootstrapStylesheet.integrity = "sha384-mUkCBeyHPdg0tqB6JDd+65Gpw5h/l8DKcCTV2D2UpaMMFd7Jo8A+mDAosaWgFBPl";
|
||||||
|
bootstrapStylesheet.href = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.rtl.min.css";
|
||||||
}
|
}
|
||||||
}, 500);
|
}
|
||||||
</script>
|
}, 500);
|
||||||
<script src="//cdn.crowdin.com/jipt/jipt.js"></script>
|
</script>
|
||||||
{% endif %}
|
<script src="//cdn.crowdin.com/jipt/jipt.js"></script>
|
||||||
</head>
|
{% endif %}
|
||||||
@ -1,8 +1,12 @@
|
|||||||
|
---
|
||||||
|
layout: compress
|
||||||
|
---
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ page.collection | default: "en-US" }}" {% if site.data.rtl contains page.collection %}dir="rtl"{% endif %}>
|
<html lang="{{ page.collection | default: "en-US" }}" {% if site.data.rtl contains page.collection %}dir="rtl"{% endif %}>
|
||||||
{% include head.html%}
|
<head>
|
||||||
|
{% include head.html %}
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{% include nav.html %}
|
{% include nav.html %}
|
||||||
|
|||||||
12
_layouts/redirect.html
Normal file
12
_layouts/redirect.html
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
layout: compress
|
||||||
|
---
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ page.collection | default: "en-US" }}" {% if site.data.rtl contains page.collection %}dir="rtl"{% endif %}>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="refresh" content="0; URL={{ page.destination }}">
|
||||||
|
|
||||||
|
{% include head.html %}
|
||||||
|
</head>
|
||||||
|
</html>
|
||||||
@ -4,8 +4,9 @@ layout: compress
|
|||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ page.collection | default: "en-US" }}" {% if site.data.rtl contains page.collection %}dir="rtl"{% endif %}>
|
<html lang="{{ page.collection | default: "en-US" }}" {% if site.data.rtl contains page.collection %}dir="rtl"{% endif %}>
|
||||||
{% include head.html%}
|
<head>
|
||||||
|
{% include head.html %}
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{% include nav.html %}
|
{% include nav.html %}
|
||||||
|
|||||||
@ -1,20 +1,7 @@
|
|||||||
---
|
---
|
||||||
lang: en-US
|
lang: en-US
|
||||||
layout: wiki
|
layout: redirect
|
||||||
section: twilightmenu
|
destination: installing-3ds#installing-manual
|
||||||
category: installing
|
|
||||||
title: Installing (3DS, Manual)
|
title: Installing (3DS, Manual)
|
||||||
description: How to install TWiLight Menu++ on the Nintendo 3DS (Manual method)
|
|
||||||
---
|
---
|
||||||
|
|
||||||
You will first need to have Custom Firmware on your 3DS, follow [3ds.hacks.guide](https://3ds.hacks.guide) to install it
|
|
||||||
{:.alert .alert-info}
|
|
||||||
|
|
||||||
### Installing
|
|
||||||
1. Download the latest version of `TWiLightMenu-3DS.7z` from [the releases page](https://github.com/DS-Homebrew/TWiLightMenu/releases)
|
|
||||||
1. Extract `TWiLightMenu-3DS.7z`
|
|
||||||
1. Copy the `_nds` folder to your SD card root
|
|
||||||
1. Copy the `BOOT.NDS` file to your SD card root
|
|
||||||
1. Copy the `roms` folder to your SD card root
|
|
||||||
1. Copy the two `.cia` files to your SD card root
|
|
||||||
1. On your 3DS, install the two CIAs with FBI
|
|
||||||
|
|||||||
@ -33,3 +33,12 @@ You will first need to have Custom Firmware on your 3DS, follow [3ds.hacks.guide
|
|||||||
- It has this icon: 
|
- It has this icon: 
|
||||||
1. Press <kbd class="face">A</kbd> or tap the download icon in the sidebar and select `TWiLight Menu++` to install it
|
1. Press <kbd class="face">A</kbd> or tap the download icon in the sidebar and select `TWiLight Menu++` to install it
|
||||||
- This will take a while
|
- This will take a while
|
||||||
|
|
||||||
|
### Installing (Manual)
|
||||||
|
1. Download the latest version of `TWiLightMenu-3DS.7z` from [the releases page](https://github.com/DS-Homebrew/TWiLightMenu/releases)
|
||||||
|
1. Extract `TWiLightMenu-3DS.7z`
|
||||||
|
1. Copy the `_nds` folder to your SD card root
|
||||||
|
1. Copy the `BOOT.NDS` file to your SD card root
|
||||||
|
1. Copy the `roms` folder to your SD card root
|
||||||
|
1. Copy the two `.cia` files to your SD card root
|
||||||
|
1. On your 3DS, install the two CIAs with FBI
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user