-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
125 lines (77 loc) · 3.35 KB
/
index.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html>
<head>
<title>New Tab Todo List</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="outer">
<header>
<div class="date">
<p id="date"></p>
</div>
<div class="add-task">
<a href="#">Add a Task</a>
</div>
<div class="time">
<p id="time"></p>
</div>
</header>
<main class="list-container">
<div class="list-inner">
<div class="list">
<h1>What do you have to do today?</h1>
<a href="#" class="add-today"></a>
<ul class="items today-list">
<li>Click 'Add a Task' to create new tasks</li>
<li>Drag this task to the completed column</li>
<li>Double click items to edit them. Then press enter to finish editing.</li>
<li>Follow Shane Jones on Twitter <a href="http://twitter.com/shanejones">Follow @shanejones</a></li>
</ul>
</div>
<div class="list">
<h1>What do you have to do tomorrow?</h1>
<ul class="items tomorrow-list">
</ul>
</div>
<div class="list">
<h1>What do you have to do another day?</h1>
<ul class="items another-day-list">
<li>Show your support by donating to this plugins future development. <a href="http://paypal.me/ShaneJonesGB/5">Donate now</a>.</li>
</ul>
</div>
<div class="list">
<h1>Your completed items</h1>
<ul class="items completed">
<li>Install this Chrome Extension.</li>
</ul>
</div>
</div>
</main>
<footer>
<p>Version: 0.1.3 <a href="https://github.com/shanejones/new-tab-todo/issues">Bugs / Feature Requests</a>
<br>Credit: <a href="http://www.shanejones.co.uk" target="_blank">Shane Jones</a>.
<a href="http://paypal.me/ShaneJonesGB/5">Donate</a> to fund future development. Go and follow him on Twitter
<a href="https://twitter.com/shanejones">@shanejones</a>.</p>
<p class="delete">
<a href="#" class="clear">Clear Completed Items</a>
</p>
<p class="delete-sure">
Are you sure <a href="#" class="yes">Yes</a> <a href="#" class="no">No</a>
</p>
</footer>
<section class="add-task">
<a href="#" class="hide_task">×</a>
<h1>Add New Task</h1>
<input type="text" id="task" placeholder="Task details"/>
<div class="buttons">
<button id="today">Add for Today</button>
<button id="tomorrow">Add for Tomorrow</button>
<button id="another-day">Add for Another Day</button>
</div>
</section>
</div>
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/jquery.ui.js"></script>
<script type="text/javascript" src="scripts/app.js"></script>
</body>
</html>