-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
67 lines (62 loc) · 1.99 KB
/
404.html
File metadata and controls
67 lines (62 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en" ng-app="folioApp">
<head>
<base href="/" />
<meta charset="utf-8" />
<meta
name="Description"
content="Jeremy Cantú | Full-Stack Software Developer"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jeremy Cantú | Full-Stack Software Developer</title>
<link
type="text/css"
rel="stylesheet"
href="dist/stylesUncss/material-design-iconic-font.css"
/>
<link
type="text/css"
rel="stylesheet"
href="dist/styles/materialize.min.css"
media="screen"
/>
<link type="text/css" rel="stylesheet" href="dist/styles/style.css" />
<link rel="canonical" href="https://www.jeremycantu.com" />
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="manifest" href="manifest.json" />
<meta name="theme-color" content="#26a69a" />
<meta name="application-name" content="Folio" />
<meta name="robots" content="noindex" />
<meta name="googlebot" content="noindex" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
</head>
<body ng-cloak>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker
.register("service-worker.js")
.catch(function (err) {
console.log("ServiceWorker registration failed: ", err);
});
}
</script>
<div class="page {{pageClass}}" ui-view autoscroll="true">
<noscript>
<h4
style="
font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light',
'Helvetica Neue', Helvetica;
text-align: center;
"
>
Sorry, JavaScript needs to be enabled in order to run this website.
</h4>
</noscript>
</div>
<script
type="text/javascript"
src="dist/scripts/lib/lib-bundle.min.js"
></script>
<script type="text/javascript" src="dist/scripts/bundle.min.js"></script>
</body>
</html>