forked from Etyre/elityre.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
resume.html
55 lines (44 loc) · 1.41 KB
/
resume.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
<!DOCTYPE html>
<head>
<title>Ricki Heicklen</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<!-- Google tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2CYW1CTPDD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2CYW1CTPDD');
</script>
<meta http-equiv="refresh" content="0; URL=resume.pdf" />
</head>
<body>
<!--Navigation bar-->
<div id="nav-placeholder">
</div>
<!--This /\ is where the Nav bar goes on the page.
this \/ is the code that goes and gets the nav bar content from nav.html-->
<script>
$(function(){
// Check if the navbar is in sessionStorage
let navbar = sessionStorage.getItem('navbar');
if (navbar) {
// If navbar is cached, use it
$("#nav-placeholder").html(navbar);
} else {
// If not cached, load it from nav.html
$("#nav-placeholder").load("nav.html", function(response) {
// Store the loaded navbar in sessionStorage
sessionStorage.setItem('navbar', response);
});
}
});
</script>
<!--end of Navigation bar-->
<div class="page title">
<h1>Resume</h1>
</div>
<div class="main text">
<p>Ricki Heicklen's <a href="./images/rph_resume.pdf">resume</a> (last updated December 2022).</p>
</div>