-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
404.html
83 lines (73 loc) · 4.13 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
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Not Found | Tobira Study Resources</title>
<link rel="shortcut icon" type="image/x-icon" href="https://sethclydesdale.github.io/tobira-study-resources/resources/images/tobira.ico">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://sethclydesdale.github.io/tobira-study-resources/resources/css/stylesheet.min.css">
<script src="https://sethclydesdale.github.io/tobira-study-resources/resources/javascript/head.min.js"></script>
<script src="https://sethclydesdale.github.io/tobira-study-resources/resources/javascript/ga.js" async></script>
</head>
<body>
<header>
<h1><a href="https://sethclydesdale.github.io/tobira-study-resources/" id="home-link">Tobira Study Resources</a></h1>
<a id="fork-me" href="https://github.com/SethClydesdale/tobira-study-resources">Fork Me</a>
</header>
<div id="content">
<div class="content-block center">
<h2 class="title" id="not-found" style="font-size:38px;">404 Not Found</h2>
<p style="font-size:20px;">Sorry, the page you're looking for cannot be found.</p>
<p style="font-size:18px;">お探しのページは見つかりませんでした。</p>
<p><a href="https://sethclydesdale.github.io/tobira-study-resources/" id="404-home" class="button"><i class="fa"></i>Return to the Index / TOPページに戻る</a></p>
</div>
</div>
<footer class="clear">
<ul class="footer-left">
<li><a href="https://sethclydesdale.github.io/tobira-study-resources/" id="footer-home">Home</a></li>
<li><a href="https://sethclydesdale.github.io/tobira-study-resources/privacy/">Privacy</a></li>
<li><a href="https://sethclydesdale.github.io/tobira-study-resources/report/">Report a Bug</a></li>
<li><a href="https://sethclydesdale.github.io/tobira-study-resources/help/">Help</a></li>
<li><a href="https://sethclydesdale.github.io/tobira-study-resources/donate/">Donate</a></li>
</ul>
<ul class="footer-right">
<li>Created by <a href="https://github.com/SethClydesdale">Seth Clydesdale</a> and the <a href="https://github.com/SethClydesdale/tobira-study-resources/graphs/contributors">GitHub Community</a></li>
</ul>
</footer>
<script src="https://sethclydesdale.github.io/tobira-study-resources/resources/javascript/all.min.js"></script>
<script>(function (window, document) {
// makes corrections to the page if used on the local file system
if (window.location.protocol == 'file:') {
var domain = 'https://sethclydesdale.github.io/tobira-study-resources/',
a = document.querySelectorAll('a[href*="' + domain + '"], script[src*="' + domain + '"], link[href*="' + domain + '"]'),
i = 0,
j = a.length, script;
for (; i < j; i++) {
switch (a[i].tagName) {
// change the anchor values to their offline files
case 'A' :
a[i].href = a[i].href.replace(domain, '');
/404\.html$/.test(a[i].href) ? a[i].href = './index.html' : a[i].href += 'index.html';
break;
// change link sources to their offline resources
case 'LINK' :
a[i].href = a[i].href.replace(domain, '');
break;
// change the js source to the offline version
case 'SCRIPT' :
// since we cannot stop js execution, check if the user actually has no internet connection before appending the script
if (!/ga\.js$/.test(a[i].src) && !navigator.onLine) {
script = document.createElement('SCRIPT');
script.src = a[i].src.replace(domain, '');
script.type = 'text/javascript';
document.body.removeChild(a[i]);
document.body.appendChild(script);
}
break;
}
}
}
}(window, document));</script>
</body>
</html>