Better Website #11
3 changed files with 294 additions and 0 deletions
88
404.html
Normal file
88
404.html
Normal file
|
|
@ -0,0 +1,88 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>WiiMart - 404</title>
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: #eef6fd;
|
||||||
|
color: #333;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
color: #0082c9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar {
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #0082c9 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #0082c9;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: #ffffff;
|
||||||
|
padding: 10px 0;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||||
|
<div class="container">
|
||||||
|
<a class="navbar-brand" href="/">
|
||||||
|
<img src="WiiMart_star_logo.png" alt="WiiMart" width="50" height="50">
|
||||||
|
WiiMart
|
||||||
|
</a>
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarMenu">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse justify-content-end" id="navbarMenu">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="#setup">Setup</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="https://github.com/Ocarinaoftime/wiimart">Source Code</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="mailto:wiimartshopping@gmail.com">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<header class="text-center py-4">
|
||||||
|
<h1>404 - Page not found</h1>
|
||||||
|
<p class="text-muted">The requested Page/Resource was not found 😔</p>
|
||||||
|
<a href="index.html">Home</a>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section class="container text-center my-4">
|
||||||
|
<p class="alert alert-warning">
|
||||||
|
Nintendo, if you want me to take this down, please email me at
|
||||||
|
<a href="mailto:wiimartshopping@gmail.com">wiimartshopping@gmail.com</a> (please don’t though, I love this).
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<footer class="text-center py-3">
|
||||||
|
<p>© 2025 WiiMart. Not affiliated with Nintendo.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
116
index.html
Normal file
116
index.html
Normal file
|
|
@ -0,0 +1,116 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>WiiMart - WSC Revival</title>
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: #eef6fd;
|
||||||
|
color: #333;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
color: #0082c9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar {
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #0082c9 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #0082c9;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: #ffffff;
|
||||||
|
padding: 10px 0;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||||
|
<div class="container">
|
||||||
|
<a class="navbar-brand" href="/">
|
||||||
|
<img src="WiiMart_star_logo.png" alt="WiiMart" width="50" height="50">
|
||||||
|
WiiMart
|
||||||
|
</a>
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarMenu">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse justify-content-end" id="navbarMenu">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="#setup">Setup</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="https://github.com/Ocarinaoftime/wiimart">Source Code</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="mailto:wiimartshopping@gmail.com">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<header class="text-center py-4">
|
||||||
|
<h1>WiiMart: A Working, Active WSC Revival</h1>
|
||||||
|
<p class="text-muted">The first Wii Shop Channel revival that lasted more than a week!</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section class="container text-center my-4">
|
||||||
|
<p class="alert alert-warning">
|
||||||
|
Nintendo, if you want me to take this down, please email me at
|
||||||
|
<a href="mailto:wiimartshopping@gmail.com">wiimartshopping@gmail.com</a> (please don’t though, I love this).
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="container text-center my-4">
|
||||||
|
<h2 id="setup">Download</h2>
|
||||||
|
<p>The cIOSes are <a href="https://ocarinaoftime.github.io/WiiMart/cIOS/">here</a>, while WiiMart’s WAD is <a href="https://ocarinaoftime.github.io/WiiMart/wad/">here</a>. In the meantime, join the <a href="https://dsc.gg/WiiMart">Discord!</a></p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="container my-4">
|
||||||
|
<h2 class="text-center">Installation</h2>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h3>Console</h3>
|
||||||
|
<p>Download the WiiMart WAD and the patched IOS WAD for your console type (Wii/vWii). We recommend YAWMME for installing WADs.</p>
|
||||||
|
<ul>
|
||||||
|
<li>vWii is the Wii U’s Wii Mode</li>
|
||||||
|
<li>If you get an error like -1022 or -1029, delete the existing title first.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h3>Dolphin</h3>
|
||||||
|
<p><strong>For those with Wii NAND backups:</strong></p>
|
||||||
|
<ul>
|
||||||
|
<li>Install both WADs in Dolphin via Tools > Install WAD.</li>
|
||||||
|
<li>Go to the Wii Menu via Tools > Load Wii System Menu 4.3X.</li>
|
||||||
|
</ul>
|
||||||
|
<p><strong>For those without Wii NAND backups:</strong></p>
|
||||||
|
<p>So far, getting the shop on a blank NAND has been unsuccessful.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer class="text-center py-3">
|
||||||
|
<p>© 2025 WiiMart. Not affiliated with Nintendo.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
90
layout.html
Normal file
90
layout.html
Normal file
|
|
@ -0,0 +1,90 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>WiiMart - Layout</title>
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: #eef6fd;
|
||||||
|
color: #333;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3 {
|
||||||
|
color: #0082c9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar {
|
||||||
|
background-color: #ffffff !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #0082c9 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #0082c9;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: #ffffff;
|
||||||
|
padding: 10px 0;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||||
|
<div class="container">
|
||||||
|
<a class="navbar-brand" href="/">
|
||||||
|
<img src="WiiMart_star_logo.png" alt="WiiMart" width="50" height="50">
|
||||||
|
WiiMart
|
||||||
|
</a>
|
||||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarMenu">
|
||||||
|
<span class="navbar-toggler-icon"></span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="collapse navbar-collapse justify-content-end" id="navbarMenu">
|
||||||
|
<ul class="navbar-nav">
|
||||||
|
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="#setup">Setup</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="https://github.com/Ocarinaoftime/wiimart">Source Code</a></li>
|
||||||
|
<li class="nav-item"><a class="nav-link" href="mailto:wiimartshopping@gmail.com">Contact</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<header class="text-center py-4">
|
||||||
|
<h1>WiiMart</h1>
|
||||||
|
<p class="text-muted">Example text</p>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section class="container text-center my-4">
|
||||||
|
<p class="alert alert-warning">
|
||||||
|
Nintendo, if you want me to take this down, please email me at
|
||||||
|
<a href="mailto:wiimartshopping@gmail.com">wiimartshopping@gmail.com</a> (please don’t though, I love this).
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="container text-center my-4">
|
||||||
|
<h2 id="setup">Example</h2>
|
||||||
|
<p>Example</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer class="text-center py-3">
|
||||||
|
<p>© 2025 WiiMart. Not affiliated with Nintendo.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue