-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork-experience.html
More file actions
46 lines (37 loc) · 1.3 KB
/
Copy pathwork-experience.html
File metadata and controls
46 lines (37 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<script src="js/components.js" type="module"></script>
<script src="js/work-experience.js" type="module"></script>
<link rel="stylesheet" href="home.css">
<link rel="icon" href="/favicon.ico">
<meta charset="UTF-8">
<title>home</title>
</head>
<!-- body-loading hides the whole page so js code can do all initial setup, this avoid size glitches -->
<body class="main-body body-loading">
<header id="header">
</header>
<main>
<div id="main-top-container" class="main-top-container">
</div>
<div class="flex-style">
<div class="content-container">
<aside class="sidebar-sticky">
<nav class="sidebar-navigation">
<ul class="sidebar-navigation-menu">
<li id="sidebar-navigation-list">
</li>
</ul>
</nav>
</aside>
<div id="content-sections-container" class="content-sections-container">
</div>
</div>
</div>
</main>
<footer id="footer">
</footer>
</body>
</html>