-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_template.html
More file actions
29 lines (25 loc) · 807 Bytes
/
_template.html
File metadata and controls
29 lines (25 loc) · 807 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>template page</title>
<script src="sharedHeader.js"></script>
</head>
<body>
<nav-bar></nav-bar>
<br />
<div class="container my-4">
<p>Nothing to see here...</p>
</div>
<footer-links></footer-links>
<br />
<script type="module" src="navBar.js"></script>
<script type="module" src="themeListener.js"></script>
<script type="module" src="Accordion.js"></script>
<script type="module" src="footer.js"></script>
<script type="module" src="aOpenNew.js"></script>
<script type="module" src="ResumeSection.js"></script>
</body>
</html>