-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
99 lines (60 loc) · 2.38 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>lorem ipsum lol</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<script>
function checkMode () {
var app = document.getElementsByTagName("BODY")[0];
if (localStorage.getItem("lightMode") == "dark") {
localStorage.setItem ("lightMode", "dark");
app.setAttribute("light-mode", "dark");
} else {
localStorage.setItem ("lightMode", "light");
app.setAttribute("light-mode", "light");
}
}
checkMode()
</script>
<script src="/upup.min.js"></script>
<script>
UpUp.start({
'content-url': '/offline.html', // show this page to offline users
'assets': ['styles.css', 'app.js', 'assets/noise.png', 'assets/adrien-olichon-gOdavfpH-3s-unsplash.jpg', 'assets/selawksl.ttf']
});
</script>
<!-- header -->
<div class="headerbg">
<div class="header">
<header>
<h1>lorem ipsum</h1>
<p>when people who know nothing about programming come together</p>
<a href = "https://discord.gg/TkMxCa64Eh">Join our Discord Server<img src="assets/discord.svg" style="height: 12px; margin: 0 0.25rem; margin-bottom: -2px;"></a>
</header>
</div>
</div>
<!-- navigation menu i guess? -->
<nav class="menu">
<div class="left"> <div class="button"> blog </div></div>
<div class="center"> <div class="button" id="expButton" role="button"> experiments </div></div>
<div class="right"> <div class="button" id="darkButton" role="button"> dark mode? </div></div>
</nav>
<div class="main">
<p>hello there</p>
<p>this website doesn't have much right now, but it'll be filled with experiments soon.</p>
<p>as for blog, oh well; you win some you lose some.</p>
</div>
<!-- footer -->
<footer>
made with <3 by a bunch of dumbos from the ground up
</footer>
<script src="app.js"></script>
</body>
</html>