-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (25 loc) · 998 Bytes
/
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
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Destinations</title>
<link rel="stylesheet" href="static/css/style.css">
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.1.2/firebase-firestore.js"></script>
<!-- Modules -->
<script src="./node_modules/jquery/dist/jquery.js"></script>
<script src="./node_modules/handlebars/dist/handlebars.js"></script>
<script src="./node_modules/sammy/lib/sammy.js"></script>
<script src="./node_modules/sammy/lib/plugins/sammy.handlebars.js"></script>
<!-- Scripts -->
<script src="./scripts/config.js"></script>
<script src="./scripts/services.js"></script>
<script src="./scripts/app.js" type="module"></script>
</head>
<body>
<div id="container">
</div>
</body>
</html>