-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.33 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<title>Keepable</title>
</head>
<body id="body">
<div>
<header class="header">
<img
class="logo-img"
src="assets/img/keepable-logo.png"
alt="keepable-logo"
/>
<div class="header-text__container">
<p class="heading white">Welcome to {keepable}</p>
</div>
</header>
<section class="higher-section">
<aside class="aside">
<!-- sidebar options render here -->
</aside>
<main id="main" class="main">
<!-- view scripts load here -->
</main>
</section>
</div>
<div class="js-edit-view"></div>
<script src="scripts/dom-handler.js"></script>
<script src="scripts/store.js"></script>
<script src="scripts/partials/sidebar.js"></script>
<script src="scripts/views/layout.js"></script>
<script src="scripts/views/form-view.js"></script>
<script src="scripts/views/cards-view.js"></script>
<script src="scripts/views/trash-view.js"></script>
<script src="scripts/views/edit-view.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>