-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1011 Bytes
/
Copy pathindex.html
File metadata and controls
33 lines (31 loc) · 1011 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notion Clone</title>
<base href="/FE7-Project1-404-1/" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="app-container">
<aside class="sidebar">
<header class="sidebar-header">
<span class="logo">Notion Clone</span>
<button id="add-root-doc-btn" class="add-root-doc-btn">+</button>
</header>
<nav class="sidebar-nav">
<ul id="document-list" class="document-list"></ul>
</nav>
</aside>
<main class="editor-container">
<div id="editor-mount-point">
<div id="editor-placeholder" class="placeholder">
<p>+ 버튼을 눌러 새 페이지를 만드세요.</p>
</div>
</div>
</main>
</div>
<script type="module" src="./src/components/sidebar.js"></script>
</body>
</html>