forked from thamara/time-to-leave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (20 loc) · 799 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
<!DOCTYPE html>
<html data-theme="">
<head>
<meta charset="utf-8">
<title>Time to Leave</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Scripts -->
<!-- First we need to declare jQuery and $ globals with jquery -->
<script>window.$ = window.jQuery = require('jquery');</script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.js" charset="utf-8"></script>
<script src="node_modules/jquery-mousewheel/jquery.mousewheel.js"></script>
<script type="module" src="js/calendar.js" charset="utf-8"></script>
</head>
<body>
<div id="calendar" class="container"></div>
<div id="footer" class="footer"></div>
</body>
</html>