-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
46 lines (41 loc) · 1.42 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
<!doctype html>
<html>
<head>
<title>Getting Started Extension's Popup</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="lib/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<script src="js/handlebars.runtime.js"></script>
<script src="js/templates.js"></script>
<script src="js/moment.min.js"></script>
<script src="js/lodash.custom.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<header>
<div class="brand">
Cyberscore Notifications
</div>
</header>
<section class="toolbar">
<a class="option mark-read" href="#"><i class="icon-bookmark"></i> mark as read</a>
<a class="option mark-unread" href="#"><i class="icon-bookmark-empty"></i> mark as unread</a>
<a class="option delete" href="#"><i class="icon-trash"></i> delete</a>
</section>
<section class="table-container">
<div class="zero-notifications">
</div>
</section>
<section class="toolbar reverse">
<a class="option mark-read" href="#"><i class="icon-bookmark"></i> mark as read</a>
<a class="option mark-unread" href="#"><i class="icon-bookmark-empty"></i> mark as unread</a>
<a class="option delete" href="#"><i class="icon-trash"></i> delete</a>
</section>
<footer>
<div class="brand">
Cyberscore Notifications
</div>
</footer>
</body>
</html>