This repository was archived by the owner on Jun 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (79 loc) · 2.69 KB
/
Copy pathindex.html
File metadata and controls
80 lines (79 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft 3DS Wiki</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<a href="index.html">
<img src="assets/images/mc3dsmoddingwiki.png" alt="Minecraft 3DS Wiki" class="wiki-logo">
</a>
<img src="assets/images/gear.png" alt="Settings" class="settings-icon" id="settingsIcon">
<div class="sliding-background"></div>
</div>
</div>
</header>
<div class="container">
</div>
</div>
<main class="grid-container" style="/*! padding-left: 0px; *//*! padding-right: 0px; *//*! padding-top: 0px; *//*! padding-bottom: 0px; *//*! margin-top: 0px; */">
<a href="sections/custom-skins.html" class="card">
<h2>Custom Skins</h2>
<p>How to create custom skins and import them into your game.</p>
</a>
<a href="sections/modifying-audio.html" class="card">
<h2>Editing Audio</h2>
<p>Learn how to replace or edit in-game audio files.</p>
</a>
<a href="sections/unistore-content.html" class="card">
<h2>Installing & Uploading Unistore Content</h2>
<p>How to edit the unistore and download content.</p>
</a>
<a href="sections/texture-packs.html" class="card">
<h2>Creating Texture Packs</h2>
<p>Create and apply custom textures to mobs and blocks.</p>
</a>
<a href="sections/dumping-assets.html" class="card">
<h2>Dump RomFS</h2>
<p>Learn how to dump game files and tools to open some file types.</p>
</a>
<a href="sections/shaders.html" class="card">
<h2>Edit shaders</h2>
<p>Create your own styled graphics!</p>
</a>
<a href="sections/Json editing.html" class="card">
<h2>json Editing</h2>
<p>Learn Json commands and how to use them.</p>
</a>
<a href="sections/modding-bjson.html" class="card">
<h2>bjson Editing</h2>
<p>Learn how to open bjson.</p>
</a>
</main>
<!-- Settings Menu Modal -->
<div class="settings-modal" id="settingsModal">
<div class="settings-menu">
<h2>Settings</h2>
<label>
<input type="checkbox" id="themeToggle">
Toggle Dark/Light Mode
</label>
<!-- <label>
<input type="checkbox" id="bgImageToggle">
Enable Background Image
</label> -->
<label>
<input type="checkbox" id="blurToggle">
Enable Background Blur
</label>
<button id="closeSettings">Close</button>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>