-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookmarks.html
More file actions
66 lines (59 loc) · 1.15 KB
/
Copy pathbookmarks.html
File metadata and controls
66 lines (59 loc) · 1.15 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<title>Recent Bookmarks</title>
<style type="text/css">
body {
font-family:Helvetica, sans-serif;
color:#222;
margin:0;
}
#header {
background:#f5f5f5;
border-top:5px solid #2d2d2d;
border-bottom:1px solid #e5e5e5;
margin-bottom:20px;
}
#header h1 {
font-size:18px;
margin:20px;
}
ul {
margin:20px;
padding:0;
}
ul li {
list-style-type:none;
margin:15px 0;
font-size:13px;
font-weight:bold;
}
ul li a {
color:#222;
text-decoration:none;
}
ul li small {
font-size:10px;
font-weight:normal;
color:rgba(0,0,0,0.5);
}
p {
margin:20px;
font-size:13px;
font-weight:bold;
}
</style>
<script src="js/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.timeago.js" type="text/javascript" charset="utf-8"></script>
<script src="js/bookmarks.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="header">
<h1>Recent Bookmarks</h1>
</div>
<p id="loading">Loading...</p>
<script type="text/javascript" charset="utf-8">
RecentBookmarks.init();
</script>
</body>
</html>