-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (109 loc) · 5.4 KB
/
Copy pathindex.html
File metadata and controls
123 lines (109 loc) · 5.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-status-bar-style" content="background-color:#121212">
<meta name="theme-color" content="#000000">
<meta name="robots" content="index, follow">
<meta name="description" content="Codeblock - Gerencie e organize seus códigos de forma eficiente.">
<meta name="keywords" content="code, programação, snippets, desenvolvimento">
<meta name="author" content="Vxncius">
<link rel="preload" href="./app/style.css" as="style">
<link rel="stylesheet" href="./app/style.css">
<link rel="preload" href="./app/main.js" as="script" crossorigin="anonymous">
<link rel="shortcut icon" href="./app/favicon.png" type="image/x-icon">
<title>Codeblock - Organize Seu Código</title>
<script src="./app/main.js" type="module" defer></script>
</head>
<body>
<div id="container" class="column-content">
<nav>
<div id="logo">
<img draggable="false" src="app/icon.png" alt="logo" width="20">
<h1>Codeblock</h1>
</div>
<div class="button-group">
<input type="checkbox" name="options-list" id="menu-options" hidden>
<label for="menu-options" class="button-style outline menu" data-title="Menu" aria-label="Open menu options">
<img draggable="false" src="./app/icons/menu-burger.png" alt="icon" width="20" class="icon">
</label>
<ul class="menu-list" aria-label="Menu of options">
<li>
<button type="button" id="changeTheme" class="button-style outline" data-title="Change Theme"
aria-label="Toggle dark/light theme">
<p>Toggle Theme</p>
<img draggable="false" src="./app/icons/moon-stars.png" alt="Theme icon" width="20" class="icon">
</button>
</li>
<li>
<button type="button" id="clearAll" class="button-style outline" data-title="Clear All Notes"
aria-label="Clear all notes" disabled>
<p>Clear All</p>
<img draggable="false" src="./app/icons/broom.png" alt="Broom icon" width="20" class="icon">
</button>
</li>
<li>
<button type="button" id="importData" class="button-style outline" data-title="Import Data"
aria-label="Import data from a file">
<p>Import Data</p>
<img draggable="false" src="./app/icons/file-import.png" alt="Import file icon" width="20" class="icon">
</button>
</li>
<li>
<button type="button" id="exportData" class="button-style outline" data-title="Export Data"
aria-label="Export your data">
<p>Export Data</p>
<img draggable="false" src="./app/icons/file-export.png" alt="Export file icon" width="20" class="icon">
</button>
</li>
<li>
<button type="button" id="donate" class="button-style outline" data-title="Donate"
aria-label="Support the project with a donation">
<p>Donate</p>
<img draggable="false" src="./app/icons/hands-heart.png" alt="Donate icon" width="20" class="icon">
</button>
</li>
<li>
<a href="https://github.com/vxncius-dev" target="_blank" class="button-style outline" data-title="GitHub"
aria-label="Visit the project on GitHub">
<p>GitHub</p>
<img draggable="false" src="./app/icons/github.png" alt="GitHub icon" width="20" class="icon">
</a>
</li>
</ul>
<button type="button" id="newCard" class="button-style" data-title="New Note" aria-label="Create new note">
<img draggable="false" src="./app/icons/pen-nib.png" alt="icon" width="20" class="icon invert">
</button>
</div>
</nav>
<ul id="listView" aria-label="List of notes"></ul>
</div>
<div id="dialog" class="column-content" style="display: none;">
<div class="container-new-note">
<div class="content-note">
<input type="text" name="titleCard" id="titleNote" placeholder="Note title [Optional]" spellcheck="false"
aria-label="Note title" maxlength="40">
<textarea name="noteContent" id="noteContent" cols="30" rows="10" placeholder="Write something here..."
spellcheck="false" aria-label="Note content"></textarea>
</div>
<div class="button-group">
<button type="button" id="closeDialog" class="button-style outline" data-title="Close Editor"
aria-label="Close note editor">
<p>Cancel</p>
<img draggable="false" src="./app/icons/cross-small.png" alt="icon" width="20" class="icon invert">
</button>
<button type="button" id="record" class="button-style outline" data-title="Start recording"
aria-label="Start or stop audio recording">
<img draggable="false" src="./app/icons/microphone.png" alt="icon" width="20" class="icon invert">
</button>
<button type="button" id="saveNewNote" class="button-style" disabled data-title="Save Note"
aria-label="Save note">
<img draggable="false" src="./app/icons/disk.png" alt="icon" width="20" class="icon invert">
</button>
</div>
</div>
</div>
<div id="modal" style="display: none;"></div>
</body>
</html>