-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
92 lines (69 loc) · 2.64 KB
/
popup.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
<!doctype html>
<html>
<head>
<title>Motify</title>
<style>
body {
min-width: 357px;
overflow-x: hidden;
}
#main{
margin-bottom: 0px;
}
</style>
<!-- Bootstrap Core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="assets/css/motify.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="assets/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="main" class="panel panel-green">
<div class="panel-heading">
Moodle Notifications
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<!-- Nav tabs -->
<ul class="nav nav-tabs">
<li class="active"><a href="#news" data-toggle="tab">News</a>
</li>
<li><a href="#assignments" data-toggle="tab">Assignments</a>
</li>
<li><a href="#qlinks" data-toggle="tab">Quick Links</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane fade in active" id="news">
<ul id='notif' class="list-group">
<li> Nothing Yet...</li>
</ul>
</div>
<div class="tab-pane fade" id="assignments">
<h4 align="center"> Nothing Yet...</h4>
<table class="table table-striped table-bordered table-hover">
</table>
</div>
<div class="tab-pane fade" id="qlinks">
<div class="panel-body">
<div id="qlinks_list" class="list-group">
<a href="#" class="list-group-item">
<i class="fa fa-book fa-fw"></i> The links of your selected courses
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div >
</div>
<!-- jQuery Version 1.11.0 -->
<script src="assets/js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="popup.js"></script>
</body>
</html>