-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.72 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Databird</title>
<link href="https://unpkg.com/[email protected]/dist/material-components-web.min.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/material-components-web.min.js"></script>
<link href="./styles.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<!-- FEATURES DRAWER -->
<aside class="mdc-drawer">
<div class="mdc-drawer__header">
<h3 class="mdc-drawer__title">Databird</h3>
<h6 class="mdc-drawer__subtitle">JSON and CSV data visualizer</h6>
</div>
<div class="mdc-drawer__content">
<nav class="mdc-list">
<div id="features-list"></div>
<hr class="mdc-list-divider">
<button id="add-button" class="mdc-button" onclick="addFeature()">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Create Feature</span>
</button>
</nav>
</div>
</aside>
<!-- DISPLAY CONTENT -->
<div id="right-side">
<header class="mdc-top-app-bar">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<span id="current-feature-title" class="mdc-top-app-bar__title">Select an item on the left</span>
</section>
<section id="current-feature-buttons" class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end"></section>
</div>
</header>
<div id="display-area"></div>
</div>
</div>
<!-- SCRIPTS -->
<script type="module" src="script.js"></script>
</body>
</html>