-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume-full-w-c.html
86 lines (57 loc) · 2.37 KB
/
resume-full-w-c.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO & Important Meta Tags [To Be Added] -->
<!-- Favicon -->
<link rel="shortcut icon" type="image/jpg" href="images/svg/logo1.svg"/>
<!-- Bootstrap v5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/index.css">
<title>Profile: Ashish R Bhandari</title>
</head>
<body>
<div class="resume-holder">
<div class="container-fluid" style="padding: 0rem;">
<div class="resume-holder-inner">
<div class="resume-card">
</div>
</div>
</div>
</div>
<script defer>
/*** Comments: */
function thisFilePath() {
let currhref = window.location.href;
let filePath = currhref.substring(0, currhref.lastIndexOf("/"));
return filePath;
}
/*** Get Resume Card */
async function loadResumeCard() {
let _thisLoc = thisFilePath();
document.querySelector(".resume-card").innerHTML = await (await fetch(_thisLoc + '/resume-card.html')).text();
}
function main() {
loadResumeCard();
}
main();
</script>
<!-- Bootstrap v5 Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="js/index.js"></script>
<style>
#basic-resume-card, #show-freelance {
box-shadow: none!important;
}
#basic-resume-card {
margin-bottom: 5px!important;
}
#show-freelance {
margin-top: 2px!important;
}
</style>
</body>
</html>