-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (22 loc) · 1.21 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Greg's CV</title>
<link href="dist/styles.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body class="">
<div id="app" class="mx-auto min-h-screen"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.1/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.4.0/backbone-min.js"></script>
<script src="config.js"></script> <!-- This should come before app.js -->
<script src="components/Header/Header.js"></script> <!-- This should come before app.js -->
<script src="components/Aside/Aside.js"></script> <!-- This should come before app.js -->
<script src="components/Main/Main.js"></script>
<script src="components/Home/Home.js"></script> <!-- This should come before app.js -->
<script src="components/CV/CV.js"></script> <!-- This should come before app.js -->
<script src="app.js"></script> <!-- This should come after Aside.js -->
</body>
</html>