-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
61 lines (45 loc) · 1.68 KB
/
app.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
<!DOCTYPE html>
<html lang="en" ng-app="readingListApp" ng-csp="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="remember-to-read" content="width=device-width, initial-scale=1">
<meta name="description" content="A chrome plugin to manage reading lists.">
<meta name="author" content="lais varejao">
<title>Remember to Read</title>
<!-- Custom JavaScript -->
<script src="javascript/app.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/app.css">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<!-- Navbar section -->
<div class="col-md-4">
<!-- Fixed Header Section -->
<div id="header">
<p>REMEMBER TO READ <span class="glyphicon glyphicon-pushpin" aria-hidden="true"></span></p>
<div id="sub-header">
<p>{ SAVE ARTICLES, READ LATER }</p>
</div>
</div>
<!-- Lists to Toogle -->
<div id="lists">
<ul>
<li><button id="to-read-btn" class="btn btn-default btn-block">TO READ</button></li>
<li><button id="read-btn" class="btn btn-default btn-block">READ ALREADY</button></li>
</ul>
</div>
</div>
<!-- Reading lists' Content -->
<div id="list-content" class="col-md-8 vertical-line">
<div id="list-title"></div>
<div id="reading-list"></div>
</div>
</div>
</div>
</body>
</html>