-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
127 lines (99 loc) · 3.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>
OSPG : 404
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index,follow">
<base href="https://ospg.github.io/">
<link rel="preload" href="https://ospg.github.io/css/smorg.css" as="style">
<link rel="stylesheet" href="https://ospg.github.io/css/smorg.css">
<meta name="generator" content="Hugo 0.45.1" />
</head>
<body>
<nav class="navbar" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item has-text-white-ter"
href="https://ospg.github.io/"><span class="has-text-weight-bold"><span class="has-text-weight-bold">OSPG</span></span>
</a>
<div class="navbar-burger burger" data-target="navMenu">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-end">
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="https://ospg.github.io/about/">About</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="https://ospg.github.io/about/contact/">Contact Us</a>
</div>
</div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="https://ospg.github.io/project/">Projects</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="https://ospg.github.io/project/godedupe/">Godedupe</a>
<a class="navbar-item" href="https://ospg.github.io/project/sv2/">SV2</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<section class="section" itemscope itemtype="http://schema.org/WebPage">
<div class="container">
<div class="columns">
<div class="column is-8 is-offset-2">
<article class="content">
<h1 class="title has-text-danger">Page Not Found</h1>
<p class="subtitle">The URL you've requested cannot be found on this web site.</p>
<p><code id="errorurl"></code></p>
<p>Sections of this site include:</p>
<ul>
<li><a href="https://ospg.github.io/">Home</a></li>
<li><a class="" href="about/">About</a></li>
<li><a class="" href="project/">Projects</a></li>
</ul>
</article>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container content">
<div class="has-text-centered">
<p>
<span class="has-text-weight-bold">OSPG</span>
</p>
<hr>
<p class="has-text-grey is-size-7">
<i class="fab fa-github"></i> <a href="https://github.com/OSPG">github.com/OSPG</a><br>
© OSPG<br>
</p>
</div>
</div>
</footer>
<script>
document.getElementById("errorurl").innerHTML = document.location.origin + document.location.pathname;
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
if ($navbarBurgers.length > 0) {
$navbarBurgers.forEach(function ($el) {
$el.addEventListener('click', function () {
var target = $el.dataset.target;
var $target = document.getElementById(target);
$el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
</body>
</html>