-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
115 lines (93 loc) · 4.59 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<title>ToDo Manager</title>
<!-- Custom CSS for this document -->
<link href="css/custom.css" rel="stylesheet">
<!-- JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF"
crossorigin="anonymous"></script>
<!-- day.js -->
<script defer src="https://unpkg.com/[email protected]/dayjs.min.js"></script>
<!-- Custom JavaScript -->
<script defer src="js/tasks.js"></script>
<script defer src="js/app.js"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-dark navbar-expand-sm bg-success fixed-top">
<!-- Toggle the left sidebar -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#left-sidebar"
aria-controls="left-sidebar" aria-expanded="false" aria-label="Toggle sidebar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Logo and title -->
<a class="navbar-brand" href="index.html">
<svg class="bi bi-check-all" width="30" height="30" viewBox="0 0 16 16" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M12.354 3.646a.5.5 0 010 .708l-7 7a.5.5 0 01-.708 0l-3.5-3.5a.5.5 0 11.708-.708L5 10.293l6.646-6.647a.5.5 0 01.708 0z"
clip-rule="evenodd" />
<path
d="M6.25 8.043l-.896-.897a.5.5 0 10-.708.708l.897.896.707-.707zm1 2.414l.896.897a.5.5 0 00.708 0l7-7a.5.5 0 00-.708-.708L8.5 10.293l-.543-.543-.707.707z" />
</svg>
ToDo Manager
</a>
<!-- Search form -->
<form class="form-inline my-2 my-lg-0 mx-auto d-none d-sm-block" action="#" role="search" aria-label="Quick search">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search query">
</form>
<!-- Link to the user profile -->
<div class="navbar-nav ml-md-auto">
<a class="nav-item nav-link" href="#">
<svg class="bi bi-people-circle" width="30" height="30" viewBox="0 0 16 16" fill="currentColor"
xmlns="http://www.w3.org/2000/svg">
<path
d="M13.468 12.37C12.758 11.226 11.195 10 8 10s-4.757 1.225-5.468 2.37A6.987 6.987 0 008 15a6.987 6.987 0 005.468-2.63z" />
<path fill-rule="evenodd" d="M8 9a3 3 0 100-6 3 3 0 000 6z" clip-rule="evenodd" />
<path fill-rule="evenodd" d="M8 1a7 7 0 100 14A7 7 0 008 1zM0 8a8 8 0 1116 0A8 8 0 010 8z"
clip-rule="evenodd" />
</svg>
</a>
</div>
</nav>
<!-- Content of the page -->
<div class="container-fluid">
<div class="row vheight-100">
<!-- Left sidebar -->
<aside class="collapse d-sm-block col-sm-4 col-12 bg-light below-nav" id="left-sidebar">
<div class="list-group list-group-flush">
<a href="#" id="filter-all" class="list-group-item list-group-item-action active">All</a>
<a href="#" id="filter-important" class="list-group-item list-group-item-action">Important</a>
<a href="#" id="filter-today" class="list-group-item list-group-item-action">Today</a>
<a href="#" id="filter-week" class="list-group-item list-group-item-action">Next 7 Days</a>
<a href="#" id="filter-private"class="list-group-item list-group-item-action">Private</a>
</div>
</aside>
<!-- Main content -->
<main class="col-sm-8 col-12 below-nav">
<h1 class="mb-2" id="filter-title">All</h1>
<!-- List of tasks -->
<ul class="list-group list-group-flush" id="list-tasks">
</ul>
<!-- Add a new task... -->
<button type="button" class="btn btn-lg btn-success fixed-right-bottom">+</button>
</main>
</div>
</div>
</body>
</html>