-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
196 lines (180 loc) · 5.49 KB
/
index.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
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
<!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"
/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jeremy Cantú | Full-Stack Software Developer</title>
<!--Import Material Design Iconic Font-->
<!-- http://zavoloklom.github.io/material-design-iconic-font/ -->
<link
type="text/css"
rel="stylesheet"
href="dist/stylesUncss/material-design-iconic-font.css"
/>
<!--Import materialize.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" />
<!-- Canonical URL -->
<link rel="canonical" href="https://www.jeremycantu.com" />
<!-- Favicon, manifest, and theme colors declarations -->
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link rel="manifest" href="manifest.json" />
<meta name="theme-color" content="#26a69a" />
<!-- Name of web application (only should be used if the website is used as an app) -->
<meta name="application-name" content="Folio" />
<!-- Control the behavior of search engine crawling and indexing -->
<!-- All Search Engines -->
<meta name="robots" content="index,follow" />
<!-- Google Specific -->
<meta name="googlebot" content="index,follow" />
<!-- Disable FLoC -->
<meta http-equiv="Permissions-Policy" content="interest-cohort=()" />
<!-- Facebook OpenGraph meta props -->
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://avatars3.githubusercontent.com/u/1449455?s=460&v=4"
/>
<meta
property="og:description"
content="Jeremy A. Cantú's multidisciplinary development and photography portfolio site"
/>
<meta property="og:url" content="https://www.jeremycantu.com" />
<meta
property="og:title"
content="Jeremy Cantú | Full-Stack Software Developer"
/>
<meta
property="og:site_name"
content="Jeremy Cantú | Full-Stack Software Developer"
/>
<!-- Apple touch device props and icons -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#26a69a" />
<link
rel="apple-touch-icon"
sizes="57x57"
href="assets/icons/apple-icon-57x57.png"
/>
<link
rel="apple-touch-icon"
sizes="60x60"
href="assets/icons/apple-icon-60x60.png"
/>
<link
rel="apple-touch-icon"
sizes="72x72"
href="assets/icons/apple-icon-72x72.png"
/>
<link
rel="apple-touch-icon"
sizes="76x76"
href="assets/icons/apple-icon-76x76.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="assets/icons/apple-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="assets/icons/apple-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="assets/icons/apple-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="assets/icons/apple-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/icons/apple-icon-180x180.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="assets/icons/android-icon-192x192.png"
/>
<meta
name="msapplication-TileImage"
content="assets/icons/ms-icon-144x144.png"
/>
</head>
<body ng-cloak>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker
.register("service-worker.js")
.then(function (registration) {
// Registration was successful
console.log(
"ServiceWorker registration successful with scope: ",
registration.scope
);
})
.catch(function (err) {
// registration failed :(
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
(Alternatively, you can visit my more static site at
<a
target="_blank"
rel="noopener noreferrer"
href="http://jac21.github.io/"
>http://jac21.github.io/</a
>).
</h4>
</noscript>
</div>
<!--Import libs -->
<script
type="text/javascript"
src="dist/scripts/lib/lib-bundle.min.js"
></script>
<!-- Import code -->
<script type="text/javascript" src="dist/scripts/bundle.min.js"></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-54XYPCX7DS"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-54XYPCX7DS");
</script>
</body>
</html>