-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
147 lines (140 loc) · 4.98 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=1" />
<title>Page not found - Jack O'Sullivan | IT Specialist in cloud, data centre, Linux engineering, automation, and deployment</title>
<meta name="description" content="page not found">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;600&family=Red+Hat+Mono&family=Red+Hat+Text&display=swap" rel="stylesheet">
<meta property="og:title" content="Page not found - Jack O'Sullivan | IT Specialist" />
<meta property="og:description" content="page not found" />
<meta property='og:image' content="https://jackosullivan.dev/assets/images/favicon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#ffffff">
<style>
* {
border: 0;
margin: 0;
padding: 0;
font-family: 'Red Hat Text', sans-serif;
text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
font-family: 'Red Hat Display', sans-serif;
}a {
color: black;
text-decoration: underline;
}
header {
text-align: center;
padding: 2em;
}
nav {
text-align: center;
border-top: 1px solid #e3e5e7;
}
nav li {
display: inline-block;
}
nav a {
display: block;
padding: 1em;
}
footer {
text-align: center;
padding: 2em;
}
.main-page {
max-width: 1024px;
margin: 0 auto;
border-left: 1px solid #e3e5e7;
border-right: 1px solid #e3e5e7;
padding: 2em;
}
section {
border-bottom: 1px solid #e3e5e7;
padding: 2em;
}
section:first-of-type {
border-top: 1px solid #e3e5e7;
}
.flex {
display: flex;
flex-wrap: wrap;
}
.flex-item {
flex: calc(100% - 2em - 2px);
margin: 0.5em;
padding: 0.5em;
text-align: center;
line-height: 1.7;
}
.shadow {
border: 1px solid #e3e5e7;
box-shadow: 5px 5px 5px #e3e5e7;
}
.sad-face {
font-size: 500%;
width: auto;
padding: 0 0.6em 0.3em 0.6em;
border-radius: 50%;
margin: 1em auto;
}
</style>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TG4JKDR2');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TG4JKDR2"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="main-page" id="top">
<header>
<h1>Jack O'Sullivan</h1>
<h2>IT Specialist</h2>
</header>
<nav>
<ul>
<li><a href="https://jackosullivan.dev/">Home</a></li>
<li><a href="https://jackosullivan.dev/documentation">Documentation</a></li>
</ul>
</nav>
<main>
<section>
<div class="flex">
<div class="flex-item shadow">
<h1>Sorry, we couldn't find the content you were looking for.</h1>
</div>
<div class="shadow sad-face">
<h1>:(</h1>
</div>
</div>
</section>
</main>
<footer>
<p>© Jack O'Sullivan, 2023.</p>
</footer>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M7ZZSJW4L4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M7ZZSJW4L4');
</script>
</body>
</html>