-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
executable file
·43 lines (37 loc) · 1009 Bytes
/
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
<!DOCTYPE html>
<!-- html5_006 : WTE micro template -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Offirmo's apps - 404</title>
<meta name="monetization" content="$ilp.uphold.com/26PeD6EzMhYJ">
<!-- https://bettermotherfuckingwebsite.com/ -->
<style type="text/css">
body {
margin: 0 auto 33px auto;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: #333;
max-width: 650px;
line-height: 1.6;
font-size: 16px;
padding: 0 10px
}
h1, h2, h3 {
line-height: 1.2
}
</style>
</head>
<header>
<h1>...</h1>
<aside>Sorry, something went wrong...</aside>
</header>
<ul>
<li><a href="https://github.com/Offirmo/offirmo-monorepo/issues">Report bug</a>
<li><a href="/">Back to home</a>
</ul>
<script>
document.querySelector('h1').textContent = document.title
Array.prototype.forEach.call(document.querySelectorAll('a'), function(el) {
el.href || (el.href = el.text)
})
</script>