-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscratch.html
More file actions
188 lines (169 loc) · 9.13 KB
/
scratch.html
File metadata and controls
188 lines (169 loc) · 9.13 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gaia Zone!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/9159e3acb3.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css">
<link rel="stylesheet" href="https://gaiawindwave90.github.io/css/bounce.css">
<link rel="stylesheet" href="https://gaiawindwave90.github.io/css/main.css">
</head>
<body>
<noscript>
<h1>You must enable Javascript to view the page.</h1>
</noscript>
<nav class="navbar navbar-expand-sm bg-menu">
<div class="container-fluid justify-content-center text-white">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link imageIcon" href="https://gaiawindwave90.github.io/"><img src="https://gaiawindwave90.github.io/img/logos/logo.png" alt="logo" width="70"/></a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#"><i class="fa-solid fa-palette"></i>Art</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#"><i class="fa-solid fa-book"></i>Writings</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://gaiawindwave90.github.io/memes.html"><i class="fa-regular fa-face-grin-squint"></i>Memes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://gaiawindwave90.github.io/scratch.html"><i class="fa-solid fa-cat"></i>Scratch Projects</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#"><i class="fa-solid fa-star"></i>Others</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://gaiawindwave90.github.io/editor.html"><i class="fa-solid fa-plus"></i>Create on GaiaMod</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/gaiawindwave90/gaiawindwave90.github.io"><i class="fa-brands fa-github"></i>GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://discord.gg/fFnNT8RGav"><i class="fa-brands fa-discord"></i>Discord Server</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"><i id="theme-toggle"></i></a>
</li>
<!-- Search Form -->
<form class="d-flex justify-content-end" action="javascript:redirect()" method="get">
<input id="search" class="ms-auto form-control me-2 searchinput" type="search" name="q" placeholder="Search Projects on PM..." aria-label="Search">
<button class="btn btn-primary" type="submit">Search</button>
</form>
</ul>
</div>
</nav>
<div class="p-5 bg-jumbotron text-center">
<h2>An archive of stuff made by me, with lots of special capabilities!</h2>
<h2>Template inspired by <a class="inspiration" href="https://penguinmod.com/">PenguinMod</a>, a mod of <a
class="inspiration-tw" href="https://turbowarp.org/">TurboWarp</a>.</h2>
<a style="text-decoration: none;" href="https://gaiawindwave90.github.io/editor.html"><button><img src="https://gaiawindwave90.github.io/img/icons/code.svg"/>Let's go!</button></a>
</div>
<div class="container-fluid bg-section text-center">
<a class="btn btn-gaia" href="https://gaiamod-main.github.io/GaiaMod-Packager/">Packager</a>
<a class="btn btn-gaia" href="https://github.com/gaiawindwave90/gaiawindwave90.github.io">GitHub</a>
<a class="btn btn-gaia" href="https://discord.gg/fFnNT8RGav">Discord</a>
</div>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-2 sidenav text-center">
<h4 class="mt-4">Date</h4>
<p><span id="currentDate"></span></p>
<p><span id="time"></span></p>
<!--
<hr>
<div id="recentCommits">
<h4 class="mt-4">Latest Commits</h4>
<ul></ul>
</div>
<script>
//I had no hope so I copied a Github script from Dinosaurmod lol
$.get("https://api.github.com/repos/gaiawindwave90/commits", function(data) {
// Display recent commits in a section
var commitsSection = $("#recentCommits");
var commitsList = $("<ul>");
data.forEach(function(commit) {
// Exclude commits made by "web-flow"
if (commit.author && commit.author.login.toLowerCase() !== "web-flow") {
var commitItem = $("<li>");
var commitInfo = commit.author ? commit.author.login : "Unknown";
var commitTitle = commit.commit.message;
commitItem.text(commitInfo + " - " + commitTitle);
commitsList.append(commitItem);
}
});
commitsSection.append(commitsList);
});
</script>
-->
</div>
<div class="col-sm-8 border bg-container">
<h2 class="mt-5">Welcome to Scratch Zone!</h2>
<div class="row text-center">
<div class="col-sm-4">
<h3>Whack-a-Vio!</h3>
<img src="https://gaiamod-main.github.io/Gaia-Home/37dac1d46101dc4509e9.png" style="width:100%" alt="Project">
<p><a href="https://gaiamod-main.github.io/?project_url=https://raw.githubusercontent.com/GaiaMod-Main/examples/refs/heads/main/src/gaia-files/Whack-A-Vio.gaia"><strong>Load this in GaiaMod!</strong></a></p>
</div>
<div class="col-sm-4">
<h3>Domino Goes To The Walmart Store</h3>
<img src="https://gaiamod-main.github.io/Gaia-Home/f69c0b0f413fed7ea8fb.png" style="width:100%" alt="Project">
<p><a href="https://gaiamod-main.github.io/?project_url=https://raw.githubusercontent.com/GaiaMod-Main/examples/refs/heads/main/src/gaia-files/Domino%20and%20Disco%20Goes%20To%20The%20Walmart%20Store.gaia"><strong>Load this in GaiaMod!</strong></a></p>
</div>
<div class="col-sm-4">
<h3>Secret Message</h3>
<img src="https://gaiamod-main.github.io/Gaia-Home/9cf988dfb45bdbf7765e.png" style="width:100%" alt="Project">
<p><a href="https://gaiamod-main.github.io/?project_url=https://raw.githubusercontent.com/GaiaMod-Main/examples/refs/heads/main/src/gaia-files/Someone%20Loves%20You!.gaia"><strong>Load this in GaiaMod!</strong></a></p>
</div>
<div class="col-sm-4">
<h3>ChatGPT</h3>
<img src="https://gaiamod-main.github.io/Gaia-Home/8a587e28acfb3ef8f994.png" style="width:100%" alt="Project">
<p><a href="https://gaiamod-main.github.io/?project_url=https://raw.githubusercontent.com/GaiaMod-Main/examples/refs/heads/main/src/gaia-files/ChatGPT.gaia"><strong>Load this in GaiaMod!</strong></a></p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid small text-center">
<h2>This website was made possible by a contribution from people like me. Thank you.</h2>
<div class="row">
<div class="col-sm-6">
<h4>Website</h4>
<ul>
<li><a href="https://gaiamod-main.github.io/about.html">About GaiaMod</a></li>
<li><a href="https://gaiamod-main.github.io/credits.html">GaiaMod Credits</a></li>
<li><a href="https://github.com/gaiawindwave90/gaiawindwave90.github.io/issues/">Report the issue</a></li>
<li><a href="https://gaiawindwave90.github.io/editor.html">Editor</a></li>
<li><a href="https://github.com/gaiawindwave90/gaiawindwave90.github.io">Source Code</a></li>
</ul>
</div>
<div class="col-sm-6">
<h4>Social Accounts</h4>
<ul>
<li><i class="fa-brands fa-facebook"></i><a href="https://www.facebook.com/CrystalMae1990">FaceBook</a></li>
<li><i class="fa-brands fa-x-twitter"></i><a href="https://twitter.com/CrystalF_1990">X</a></li>
<li><i class="fa-brands fa-youtube"></i><a href="https://www.youtube.com/@GaiaWindWave90">YouTube</a></li>
<li><i class="fa-brands fa-github"></i><a href="https://github.com/gaiawindwave90">GitHub</a></li>
<li><i class="fa-solid fa-fire"></i><a href="https://codetorch.net/en/users/MB1990">CodeTorch</a></li>
<li><i class="fa-solid fa-paw"></i><a href="https://sofurry.com/u/maebug1990">SoFurry (WARNING: NSFW)</a></li>
<li><i class="fa-solid fa-paintbrush"></i><a href="https://www.weasyl.com/%7Egaia">Weasyl (WARNING: NSFW)</a></li>
</ul>
</div>
</div>
<b>Tips:</b> <div id="random"></div>
<p>WARNING: This website might contain an inappropriated stuff and may not be suitable for younger visitors.</p>
<p>©<span id="year"></span> GAIA. Template is inspired by <a class="inspiration" href="https://penguinmod.com/">PenguinMod</a>, a mod of <a
class="inspiration-tw" href="https://turbowarp.org/">TurboWarp</a>. Bootstrap 5 Theme Made By <a href="https://www.w3schools.com">www.w3schools.com</a>. Hosted on <a href="https://github.com/">GitHub</a>.</p>
</footer>
<script src="https://gaiawindwave90.github.io/js/main.js">
</script>
<!-- Elfsight Age Verification | Untitled Age Verification -->
<script src="https://elfsightcdn.com/platform.js" async></script>
<div class="elfsight-app-08517f37-9e04-4c7d-90cc-30d7b150efe6" data-elfsight-app-lazy></div>
</body>
</html>