This repository has been archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathresume.html
68 lines (61 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>John Appleseed — Resume</title>
<link rel="shortcut icon" href="/favicon.ico"/>
<link rel="apple-touch-icon" href="/joyneop.png"/>
<link rel="stylesheet" type="text/css" href="yart-main.css">
<script src="./yart.js"></script>
<style>
#source-md {
display: none;
}
</style>
<script type="text/javascript">
window.addEventListener('load', function(){
window.theDoms = document.body.getElementsByClassName('lazy-display-animation');
window.theDelay = 50;
for (var i = 0; i < window.theDoms.length; i++) {
setTimeout((function(ii){
var _fu = function () {
window.theDoms[ii].classList.add('played');
};
return _fu;
})(i), window.theDelay*i);
};
[].map.call(document.body.getElementsByTagName('a'), function (n) {
n.target = '_blank';
});
[].map.call(document.body.querySelectorAll('img[data-async-src]'), function (n) {
n.src = n.getAttribute('data-async-src');
});
}, false);
</script>
</head>
<body>
<div class="download-button-container">
<a class="download-button lazy-display-animation" href="/resume/joyneop_resume.pdf">Download PDF</a>
</div>
<div class="page-start"></div>
<div id="source-md">
@ John Appleseed
@@ TEL: [+1 (408) 555-5555](tel:+1-408-555-5555)
@@ Email: [[email protected]](mailto:[email protected])
# Experience
// Current
## Job Title @ Company {10/2015—Present}
Detailed description of this period of experience.
:: Learn more: [github.com/joyneop/yart](https://github.com/joyneop/yart)
==== A line starting with four equal signs will generate a page break for printing.
</div>
<div class="grand cont" id="cont">
<img class="avatar" data-async-src="./avatar.png">
</div>
<script type="text/javascript">
var source = document.getElementById('source-md').innerHTML;
document.getElementById('source-md').remove()
resumeMarkdownParser(source);
</script>
</body>
</html>