forked from francois2metz/trello-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Trello calendar</title>
<script type="text/javascript" src="js/vendor/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="https://api.trello.com/1/client.js?key=80be6f1a85a3b09655f98bb9e3d95809"></script>
<script type="text/javascript" src="js/vendor/jquery-ui-1.8.11.custom.min.js"></script>
<script type="text/javascript" src="js/vendor/fullcalendar.min.js"></script>
<script type="text/javascript" src="js/vendor/underscore-min.js"></script>
<script type="text/javascript" src="js/vendor/backbone-min.js"></script>
<script type="text/javascript" src="js/vendor/moment.min.js"></script>
<script type="text/javascript" src="js/trello_calendar.js"></script>
<link rel="stylesheet" type="text/css" href="css/calendar.css" />
<link rel="stylesheet" type="text/css" href="css/fullcalendar.css" />
<link rel="stylesheet" media="print" type="text/css" href="css/fullcalendar.print.css" />
</head>
<body>
<div id="boards"></div>
<div id="calendar"></div>
</body>
</html>