-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (67 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>My Personal Webpage</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,500' rel='stylesheet' type='text/css'>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<script src='js/jquery-2.1.4.min.js'></script>
<script src='js/application.js'></script>
</head>
<body>
<div class='container-fluid'>
<!-- Top Bar -->
<div class='row'>
<div id='weather-wrap'>
<input id='weather-loc' onkeypress="this.style.width = (this.value.length + 1)">
<div id='weathericon'>
<img id='weather-icon' src='' class='img-responsive'>
</div>
<div id='weather-show'>
<i class="glyphicon glyphicon-time"></i>
</div>
</div>
</div>
<!-- Main message center -->
<div class='row'>
<div id='mainwrap-bot'>
<h1 id='greeting'></h1>
<h2 id='task-notification'>Lets get something done today!</h2>
</div>
</div>
<!-- Todo and News -->
<div class='row'>
<!-- To do List -->
<div id='todowrap' class='col-xs-4 col-lg-3'>
<div id='todo-list' class='col-xs-12'>
</div>
<div id='completed-list' class='col-xs-12'>
</div>
<div id='input-task-row' class='col-xs-12'>
<input id='userInTask' class='col-xs-10' placeholder='Task'>
<!-- <input id='userInDate' class='col-xs-4' placeholder='Due'> -->
<div class='col-xs-6'>
<button id='confirm-button' type='button' class='btn-xs btn-primary'>Confirm</button>
<button id='cancel-button' type='button' class ='btn-xs btn-link'>Cancel</button>
</div>
</div>
<button id='addtask-button' type='button' class ='btn btn-link'>New Task <i class="glyphicon glyphicon-plus"></i></button>
<button id='completedtask-button' type='button' class ='btn-sm btn-link'>Completed</button>
</div>
<!-- News Feed -->
<div id='newswrap' class='col-xs-5 col-lg-4'>
<div class='col-xs-12'>
<h3>Top Stories</h3>
</div>
<div id='news-content'>
</div>
</div>
</div>
</div>
<!-- Buttons at bottom of page -->
<button id='todo-button' type='button' class='btn-xs btn-link'>Task</button>
<button id='news-button' type='button' class='btn-xs btn-link'>News</button>
</body>
</html>