-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnot_found.html
43 lines (39 loc) · 1.47 KB
/
not_found.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>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[sgOS] page not found</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<link href="/site/style.css" rel="stylesheet" type="text/css" media="all"> <!-- this guy's only for the local copy -->
<script src="/lang.js"></script>
<script src="/site/lang.js"></script> <!-- this guy's only for the local copy -->
</head>
<body>
<button onclick="toggleLang();" class="float">
<span class="txt-en">language</span>
<span class="txt-tp">toki</span>
<span class="txt-sp"></span>
</button>
<div class="main">
<h1 class="center">
<span class="txt-en">page not found</span>
<span class="txt-tp">lipu ni li lon ala</span>
<span class="txt-sp"></span>
</h1>
<p class="center">
<span class="txt-en">the page you're looking for isn't here.</span>
<span class="txt-tp">lipu pi wile sina li lon ma ni ala.</span>
<span class="txt-sp"></span>
</p>
<p class="center">
<br>
<button onclick="javascript:history.back()">
<span class="txt-en">go back</span>
<span class="txt-tp">o tawa weka</span>
<span class="txt-sp"></span>
</button>
</p>
</div>
</body>
</html>