-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
75 lines (62 loc) · 3.54 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="name" content="Blokkok • 404">
<meta name="description" content="Blokkok is a modular android app where you can plug in and out "modules" to remove, add, or modify features to it. This modular approach allows users to modify the app functionality without compiling the entire app. Blokkok is targeted to be a full-fledged hackable Android App IDE for Android. But don't let that target fool you, you can fully change Blokkok to anything else you wanted!">
<meta name="keywords" content="blokkok, blocks, block, blokk, blok, openblocks">
<meta name="theme-color" content="#00aa58">
<meta property="og:title" content="Blokkok • 404">
<meta property="og:url" content="https://www.blokkok.ga">
<meta property="og:description" content="Blokkok is a modular android app where you can plug in and out "modules" to remove, add, or modify features to it. This modular approach allows users to modify the app functionality without compiling the entire app. Blokkok is targeted to be a full-fledged hackable Android App IDE for Android. But don't let that target fool you, you can fully change Blokkok to anything else you wanted!">
<title>Blokkok • 404</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Round">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" href="./img/favicon.png">
<script async src="https://arc.io/widget.min.js#9aZ6St8Q"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TLHE9301B9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TLHE9301B9');
</script>
</head>
<body>
<nav class="navBar">
<div class="container">
<div class="navBarBase">
<img class="navBarBrand" src="./img/logoTransparent.png">
<a href="javascript:void(0);" class="navBarToggle" onclick="BlokkokWebApp.toggleNav()">
<span class="material-icons-round" id="toggle-icon">
menu
</span>
</a>
</div>
<div class="navBarCollapse">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/download.html">Download</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/branding.html">Branding</a></li>
<li><a href="/#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div class="headerHero" style="height: 100vh;">
<div class="container heroMain" style="height: 100vh; align-items: center; flex-direction: column;">
<h1 style="z-index: 1;">404</h1>
<p class="randomText">This page doesn't want to exist.</p>
</div>
</div>
<script src="./js/main.js"></script>
<script>
const randomTextItem = $('.randomText');
const randomTextTexts = [ 'Looks like you had a wrong turn.', 'Oops.. Someone deleted this page.', 'A black hole ate the page.', 'TheClashFruit did a typo in the page name.', '"--- --- .--. ... .-.-.-" means "Oops."' ];
randomTextItem.innerHTML = randomTextTexts[Math.floor(Math.random() * randomTextTexts.length)];
</script>
</body>
</html>