-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (84 loc) · 4.49 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>oragne.dev</title>
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#FC6A04">
<meta name="msapplication-TileImage" content="/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#FC6A04">
</head>
<body>
<nav>
<ul>
<li><a href="https://oragne.dev" class="active">Projects</a></li>
<li><a href="https://oragne.dev/about">About</a></li>
</ul>
</nav>
<!-- App Menu -->
<div id="app-menu-container">
<button id="app-menu-button">☰</button>
<div id="app-menu-grid">
<div class="app-menu-item" data-link="https://oragne.dev">
<img src="https://oragne.dev/favicon/apple-icon.png" alt="oragne.dev" />
<p>oragne.dev</p>
</div>
<div class="app-menu-item" data-link="https://vanishgames.oragne.dev">
<img src="https://vanishgames.oragne.dev/favicon/apple-icon.png" alt="VanishGames" />
<p>VanishGames</p>
</div>
<div class="app-menu-item" data-link="https://kahootfetcher.oragne.dev">
<img src="https://kahootfetcher.oragne.dev/favicon/apple-icon.png" alt="KahootFetcher" />
<p>KahootFetcher</p>
</div>
<div class="app-menu-item" data-link="https://sga.oragne.dev">
<img src="https://sga.oragne.dev/favicon/apple-icon.png" alt="SGA Trainer" />
<p>SGA Trainer</p>
</div>
</div>
</div>
<section id="profile">
<div class="profile-box">
<img src="/assets/profile-pic.png" alt="Profile Picture" class="profile-pic">
<div class="profile-info">
<h1>oragne</h1>
<div class="badges">
<a href="https://github.com/orn8"><img src="/assets/github-badge.png" alt="GitHub Account"></a>
<a href="https://discord.com/users/1101637133850132572"><img src="/assets/discord-badge.png" alt="Discord Account"></a>
<a href="https://rblx.name/1794666003"><img src="/assets/roblox-badge.png" alt="Roblox Account"></a>
<a href="mailto:[email protected]"><img src="/assets/mail-badge.png" alt="Email"></a>
</div>
<p class="bio">just your friendly neighbourhood oragne.</p>
</div>
</div>
</section>
<section id="projects">
<div class="projects-grid">
<div class="repo" data-name="tinfoil" data-description="A *.json file with working Tinfoil shops on it."></div>
<div class="repo" data-name="ipa" data-description="An iPA repo for the wackiest apps I've found."></div>
<div class="repo" data-name="vanishgames" data-description="Unblocked games, but better. (Educational purposes only)"></div>
<div class="repo" data-name="kahootfetcher" data-description="Fetch a Kahoot's answers. (Educational purposes only)"></div>
<div class="repo" data-name="discordmod" data-description="A collection of my plugins, themes, and tools for Discord mod clients."></div>
<div class="repo" data-name="oragne.dev" data-description="My website portfolio."></div>
<div class="repo" data-name="sga" data-description="A tool to help you learn the Standard Galactic Alphabet."></div>
<div class="repo" data-name="tetr-zen" data-description="A script to log Zen progression over time in TETR.IO."></div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>