-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNFHome.html
More file actions
42 lines (36 loc) · 1.05 KB
/
NFHome.html
File metadata and controls
42 lines (36 loc) · 1.05 KB
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
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel='stylesheet' href='fullcalendar-2.7.1/fullcalendar.css'>
<script src='fullcalendar-2.7.1/lib/jquery.min.js'></script>
<script src="js/bootstrap.min.js"></script>
<script src='fullcalendar-2.7.1/lib/moment.min.js'></script>
<script src='fullcalendar-2.7.1/fullcalendar.js'></script>
<script type='text/javascript' src='fullcalendar-2.7.1/gcal.js'></script>
<script src="js/popper.min.js"></script>
<title>Never Forget</title>
</head>
<body>
<script>
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
},
})
});
</script>
<div class="col-md-12">
<div id='calendar'></div>
<!-- Your first column here -->
</div>
</div>
</div>
</body>
</html>