-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
199 lines (92 loc) · 4.33 KB
/
404.html
File metadata and controls
199 lines (92 loc) · 4.33 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<!--None of this is visible, just data to help with stuff -->
<head>
<!--This is the template for all pages! -->
<meta name="viewport" content="initial-scale=1">
<!--This must be updated with a description of what the page is! -->
<meta name="description" content="The Official Website of Kole McRae." />
<link rel="shortcut icon" href="/favicon.png" type="image/png" />
<!-- Add slug here! -->
<link rel="canonical" href="https://kolemcrae.com/404.html" />
<meta property="og:site_name" content="404 | Kole McRae" />
<meta property="og:type" content="website" />
<!-- Add name of article to here -->
<meta property="og:title" content="404 | Kole McRae" />
<!-- Remember to update the Schema! Use a schema generator! -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-35855016-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-35855016-1');
</script>
<!-- Update the article title -->
<title>404 | Kole McRae</title>
<meta name="theme-color" content="#76B3E0">
<link rel="stylesheet" type="text/css" href="/custom.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<!--Header is done here -->
<body>
<!--a scroll to top button -->
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<div class="container-fluid">
<div class="row row-cols-2 ">
<div class="col-sm-2 gradientBackground shadow">
<img src="headshot.JPG" class="img-fluid headShot mx-auto d-block rounded-circle shadow" alt="a headshot of Kole McRae" width="150" height="50">
<div class="linkBoxtoo">
<nav class="nav flex-column">
<a class="nav-link active" href="/">Home</a>
<a class="nav-link" href="/current-projects/">Current Projects</a>
<a class="nav-link" href="/consulting/">Consulting</a>
<a class="nav-link" href="/notebook/">Notebook</a>
<a class="nav-link" href="/about/">Contact Me</a>
</nav>
</div>
</div>
<div class="col-10">
<div class="headlinecontainer shadow-sm">
<div class="box">
<!-- Article title goes here in the h1 -->
<h1 class="display-1 theTop"><div class="textBackground">Whoops! This is a <strong>404 page </strong> meaning the url doesn't exist!</div></h1>
</div>
</div>
<div id="main textStuff" role="main" class="container-fluid bigOne">
<main role="main" class="container">
<!-- All the STUFF goes here -->
<h2> Sorry about that. </h2>
<p>You can try one of the links on this page to find what you are looking for! </p>
<br /><br /><br />
<!-- The end of stuff, leave the rest -->
</main>
</div>
<div class="wrapper-footer">
<div class="container" id="bottomcontainer">
<footer class="footer">
<p>© 1987<script>new Date().getFullYear()>1987&&document.write("-"+new Date().getFullYear());</script>, Kole McRae.</p>
</footer>
</div>
</div>
</div>
</div>
<a class="h-card" rel="me" href="https://kolemcrae.com/" style="display: none;">Kole McRae</a>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> </body>
</html>