-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (54 loc) · 2.13 KB
/
Copy pathindex.html
File metadata and controls
61 lines (54 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Bullet Journal</title>
<meta name="keywords" content="journal" />
<meta name="author" content="Frozon" />
<link rel="stylesheet" href="./sources/styles.css" />
</head>
<body class="main-view default-view">
<div class="header">Bullet Journal</div>
<main>
<div class="container">
<div class="cell cell-2">
<div class="section-container">
<h2 class="section-header-side">Day</h2>
<div class="journal-box-history">
</div>
</div>
</div>
<div class="cell cell-4">
<div class="section-container">
<h2 class="section-header-main">Focus</h2>
<div class="journal-main-box">
<div class="entry-list">
</div>
<div class="bullet new-button" id="add-bullet-button">New Bullet</div>
</div>
</div>
</div>
<div class="cell cell-5">
<div class="section-container">
<h2 class="section-header-side">Categories</h2>
<div class="category-box"></div>
<div class="big-button new-button" id="add-cate-button">Add Category</div>
<div class="big-button" id="select-all">Select All</div>
<div class="big-button" id="deselect-all">Deselect All</div>
</div>
</div>
</div>
</main>
<bullet-editor-page></bullet-editor-page>
<cate-editor-page></cate-editor-page>
<!-- journal-entry web component -->
<script src="./sources/components/bulletEditorPage.js" type="module"></script>
<script src="./sources/components/categoryEditorPage.js" type="module"></script>
<script src="./sources/components/bulletEntry.js" type="module"></script>
<script src="./sources/components/categoryEntry.js" type="module"></script>
<script src="./sources/components/dateEntry.js" type="module"></script>
<!-- Router Script -->
<script src="./sources/scripts/router.js" type="module"></script>
<!-- Main Script -->
<script src="./sources/scripts/script.js" type="module"></script>
</body>
</html>