-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·78 lines (64 loc) · 2.36 KB
/
index.html
File metadata and controls
executable file
·78 lines (64 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<meta name="description" content="The ultimate Note app">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,900" rel="stylesheet">
<script id="entry-template" type="text/x-handlebars-template">
{{#each notes}}
<div class="note">
<div class="date">
<h1>{{title}}</h1>
<div class="body">
{{body}}
</div>
</div>
{{/each}}
</script>
</head>
<body>
<header>
<h1 class="title">Daily Notes</h1>
<button class="create">create</button>
<div class="filters">
Order By:
<input type="radio" name="filter" id="date" value="date" checked>
<label for="date">Date</label>
<input type="radio" name="filter" id="created" value="created">
<label for="created">Created</label>
<input type="radio" name="filter" id="importance" value="importance">
<label for="importance">Importance</label>
</div>
</header>
<main class="main">
<p class="style-switcher">
<span class="choice active">dark</span><span>|</span><span class="choice">light</span>
</p>
</main>
<div class="modal">
<div class="container">
<p class="close">close</p>
<h2>Create new note</h2>
<form>
<label for="title">Title</label>
<input type=text id="title"></form>
<label for="title">Description</label>
<textarea rows="10"></textarea>
</form>
<button class="save">save</button>
</div>
</div>
<script src="js/vendor/handlebars-v4.0.11.js"></script>
<script src="js/vendor/modernizr-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script type="module" src="js/model.js"></script>
<script type="module" src="js/controller.js"></script>
</body>
</html>