-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
19 lines (19 loc) · 880 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html ng-app="calendarApp">
<head>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.7/angular.min.js"></script>
<!-- Lodash for array manipulation -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/lodash@4.17.4/lodash.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="calendar.js"></script>
<script type="text/javascript" src="window.js"></script>
<!-- Add an amazingly beautiful snowstorm (first google result) -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="snowstorm.js"></script>
</head>
<body>
<calendar></calendar>
</body>
</html>