Skip to content

Commit 46b30cd

Browse files
committed
deploy: fba7d3e
0 parents  commit 46b30cd

File tree

19 files changed

+516
-0
lines changed

19 files changed

+516
-0
lines changed

.nojekyll

Whitespace-only changes.

.well-known/discord

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dh=e8419018bbf776adff3ca6bc240ae0c3fb37db21

.well-known/resonite-userid.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
U-alizard

404.html

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, inital-scale=1.0">
6+
<title>Oops!</title>
7+
<meta name="description" content="Error 404: Page Not Found">
8+
<meta name="author" content="alizardguy">
9+
<link rel="stylesheet" href="/style/navbar.css">
10+
<link rel="stylesheet" href="/style/dividers.css">
11+
<link rel="stylesheet" href="/style/base.css">
12+
</head>
13+
<body>
14+
<header class="header">
15+
<a href="/index" class="logo">alizardguy</a>
16+
<nav>
17+
<ul>
18+
<li><a href="/index">Home</a></li>
19+
<li><a href="/socials">Socials</a></li>
20+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
21+
</ul>
22+
</nav>
23+
<div class="hamburger">
24+
<button class="hamburger-button" onclick="toggleMobileMenu()"></button>
25+
<ul id="mobile-menu" class="mobile-menu">
26+
<li><a href="/index">Home</a></li>
27+
<li><a href="/socials">Socials</a></li>
28+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
29+
</ul>
30+
</div>
31+
<script>
32+
function toggleMobileMenu() {
33+
document.getElementById("mobile-menu").classList.toggle('open');
34+
}
35+
</script>
36+
</header>
37+
<main style="text-align: center; padding-top: 50px;">
38+
<h1>Error 404</h1>
39+
<p>Page not found</p>
40+
</main>
41+
</body>
42+
</html>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
alizardguy.com

ai.txt

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Prevent datasets from using the following file types (Spawning AI)
2+
3+
User-Agent: *
4+
Disallow: *.bmp
5+
Disallow: *.gif
6+
Disallow: *.ico
7+
Disallow: *.jpeg
8+
Disallow: *.jpg
9+
Disallow: *.png
10+
Disallow: *.svg
11+
Disallow: *.tif
12+
Disallow: *.tiff
13+
Disallow: *.webp
14+
Disallow: *.aac
15+
Disallow: *.aiff
16+
Disallow: *.amr
17+
Disallow: *.flac
18+
Disallow: *.m4a
19+
Disallow: *.mp3
20+
Disallow: *.oga
21+
Disallow: *.opus
22+
Disallow: *.wav
23+
Disallow: *.wma
24+
Disallow: *.mp4
25+
Disallow: *.webm
26+
Disallow: *.ogg
27+
Disallow: *.avi
28+
Disallow: *.mov
29+
Disallow: *.wmv
30+
Disallow: *.flv
31+
Disallow: *.mkv
32+
Disallow: *.py
33+
Disallow: *.js
34+
Disallow: *.java
35+
Disallow: *.c
36+
Disallow: *.cpp
37+
Disallow: *.cs
38+
Disallow: *.h
39+
Disallow: *.css
40+
Disallow: *.php
41+
Disallow: *.swift
42+
Disallow: *.go
43+
Disallow: *.rb
44+
Disallow: *.pl
45+
Disallow: *.sh
46+
Disallow: *.sql
47+
Disallow: *.txt
48+
Disallow: *.pdf
49+
Disallow: *.doc
50+
Disallow: *.docx
51+
Disallow: *.odt
52+
Disallow: *.rtf
53+
Disallow: *.tex
54+
Disallow: *.wks
55+
Disallow: *.wpd
56+
Disallow: *.wps
57+
Allow: /

favicon.ico

1.87 KB
Binary file not shown.

index.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, inital-scale=1.0">
6+
<title>Home</title>
7+
<meta name="description" content="Welcome to my site!">
8+
<meta name="author" content="alizardguy">
9+
<link rel="stylesheet" href="/style/navbar.css">
10+
<link rel="stylesheet" href="/style/dividers.css">
11+
<link rel="stylesheet" href="/style/base.css">
12+
</head>
13+
<body>
14+
<header class="header">
15+
<a href="/index" class="logo">alizardguy</a>
16+
<nav>
17+
<ul>
18+
<li><a href="/index">Home</a></li>
19+
<li><a href="/socials">Socials</a></li>
20+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
21+
</ul>
22+
</nav>
23+
<div class="hamburger">
24+
<button class="hamburger-button" onclick="toggleMobileMenu()"></button>
25+
<ul id="mobile-menu" class="mobile-menu">
26+
<li><a href="/index">Home</a></li>
27+
<li><a href="/socials">Socials</a></li>
28+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
29+
</ul>
30+
</div>
31+
<script>
32+
function toggleMobileMenu() {
33+
document.getElementById("mobile-menu").classList.toggle('open');
34+
}
35+
</script>
36+
</header>
37+
<link rel="stylesheet" href="/style/home.css">
38+
<main>
39+
<div>
40+
<!--Top Intro Text-->
41+
<div class="intro-block">
42+
<h1 class="intro-text bluegradtext">I'm alizard</h1>
43+
</div>
44+
<div>
45+
<p class="infosubline">Computer Science Student, Internet Lizard</p>
46+
</div>
47+
<!--About Me-->
48+
<div class="infoblock">
49+
<p>My name is Lizard, I am a programmer with an interest in Virtual Reality.</p>
50+
<br>
51+
<p>I am apart of <a href="https://www.theneolanders.com/">The Neolanders</a> and am active on <a href="https://resonite.com/">Resonite</a>.</p>
52+
</div>
53+
</div>
54+
</main>
55+
</body>
56+
</html>

landing/manialink/index.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, inital-scale=1.0">
6+
<title>Manialink</title>
7+
<meta name="description" content="Manialink user landing page">
8+
<meta name="author" content="alizardguy">
9+
<link rel="stylesheet" href="/style/navbar.css">
10+
<link rel="stylesheet" href="/style/dividers.css">
11+
<link rel="stylesheet" href="/style/base.css">
12+
</head>
13+
<body>
14+
<header class="header">
15+
<a href="/index" class="logo">alizardguy</a>
16+
<nav>
17+
<ul>
18+
<li><a href="/index">Home</a></li>
19+
<li><a href="/socials">Socials</a></li>
20+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
21+
</ul>
22+
</nav>
23+
<div class="hamburger">
24+
<button class="hamburger-button" onclick="toggleMobileMenu()"></button>
25+
<ul id="mobile-menu" class="mobile-menu">
26+
<li><a href="/index">Home</a></li>
27+
<li><a href="/socials">Socials</a></li>
28+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
29+
</ul>
30+
</div>
31+
<script>
32+
function toggleMobileMenu() {
33+
document.getElementById("mobile-menu").classList.toggle('open');
34+
}
35+
</script>
36+
</header>
37+
<link rel="stylesheet" href="/style/home.css">
38+
<main>
39+
<div>
40+
<h1>Welcome ManiaLink User!!!</h1>
41+
<h2>My ManiaLinks:</h2>
42+
<h3>Maniaplanet:</h3>
43+
<p>- yipyap</p>
44+
<p>- alizard</p>
45+
</div>
46+
</main>
47+
</body>
48+
</html>

private/index.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, inital-scale=1.0">
6+
<title>Private</title>
7+
<meta name="description" content="Private page, not bots allowed">
8+
<meta name="author" content="alizardguy">
9+
<link rel="stylesheet" href="/style/navbar.css">
10+
<link rel="stylesheet" href="/style/dividers.css">
11+
<link rel="stylesheet" href="/style/base.css">
12+
</head>
13+
<body>
14+
<header class="header">
15+
<a href="/index" class="logo">alizardguy</a>
16+
<nav>
17+
<ul>
18+
<li><a href="/index">Home</a></li>
19+
<li><a href="/socials">Socials</a></li>
20+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
21+
</ul>
22+
</nav>
23+
<div class="hamburger">
24+
<button class="hamburger-button" onclick="toggleMobileMenu()"></button>
25+
<ul id="mobile-menu" class="mobile-menu">
26+
<li><a href="/index">Home</a></li>
27+
<li><a href="/socials">Socials</a></li>
28+
<li><a href="https://blog.alizardguy.com/">Blog</a></li>
29+
</ul>
30+
</div>
31+
<script>
32+
function toggleMobileMenu() {
33+
document.getElementById("mobile-menu").classList.toggle('open');
34+
}
35+
</script>
36+
</header>
37+
<main>
38+
<h1>Unlisted pages folder root</h1>
39+
</main>
40+
</body>
41+
</html>

0 commit comments

Comments
 (0)