-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcalendar.html
110 lines (89 loc) · 4.87 KB
/
calendar.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Dashboard">
<meta name="keyword" content="Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
<title>JSS</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!--external css-->
<link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href="assets/js/fullcalendar/bootstrap-fullcalendar.css" rel="stylesheet" />
<!-- Custom styles for this template -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/style-responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<section id="container" >
<section id="main-content">
<section class="wrapper">
<div class="row mt">
<aside class="col-lg-3 mt">
<h4><i class="fa fa-angle-right"></i> Draggable Events</h4>
<div id="external-events">
<div class="external-event label label-theme">Sample1</div><br />
<div class="external-event label label-theme">Sample2</div><br />
<div class="external-event label label-theme">Sample3</div><br />
<div class="external-event label label-theme">Sample4</div><br />
</div>
<h4><i class="fa fa-angle-right" style="padding-top:20px"></i> Draggable Events</h4>
<div id="external-events" >
<div class="external-event label label-theme">Sample1</div><br />
<div class="external-event label label-theme">Sample2</div><br />
<div class="external-event label label-theme">Sample3</div><br />
<div class="external-event label label-theme">Sample4</div><br />
</div>
<h4><i class="fa fa-angle-right" style="padding-top:20px"></i> Draggable Events</h4>
<div id="external-events">
<div class="external-event label label-theme">Sample1</div><br />
<div class="external-event label label-theme">Sample2</div><br />
<div class="external-event label label-theme">Sample3</div><br />
<div class="external-event label label-theme">Sample4</div><br />
</div>
<h4><i class="fa fa-angle-right" style="padding-top:20px"></i> Draggable Events</h4>
<div id="external-events">
<div class="external-event label label-theme">Sample1</div><br />
<div class="external-event label label-theme">Sample2</div><br />
<div class="external-event label label-theme">Sample3</div><br />
<div class="external-event label label-theme">Sample4</div><br />
</div>
</aside>
<aside class="col-lg-9 mt">
<section class="panel">
<div class="panel-body">
<div id="calendar" class="has-toolbar"></div></div>
</section>
</aside>
</div>
<!-- page end-->
</section>
</section><!-- /MAIN CONTENT -->
</section>
<!-- js placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/jquery-ui-1.9.2.custom.min.js"></script>
<script src="assets/js/fullcalendar/fullcalendar.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script class="include" type="text/javascript" src="assets/js/jquery.dcjqaccordion.2.7.js"></script>
<script src="assets/js/jquery.scrollTo.min.js"></script>
<script src="assets/js/jquery.nicescroll.js" type="text/javascript"></script>
<!--common script for all pages-->
<script src="assets/js/common-scripts.js"></script>
<!--script for this page-->
<script src="assets/js/calendar-conf-events.js"></script>
<script>
//custom select box
$(function(){
$("select.styled").customSelect();
});
</script>
</body>
</html>