-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
38 lines (35 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>file-tree demo</title>
<base href="/file-tree/">
<meta property="og:title" content="file-tree Web Component">
<meta property="og:description" content="A file tree web component giving access to a device's file system using the File System Access API">
<meta property="og:image" content="https://dannymoerkerke.github.io/file-tree/demo/img/logo.png">
<meta property="og:url" content="https://dannymoerkerke.github.io/file-tree">
<meta name="twitter:card" content="summary_large_image">
<meta name="Author" content="Danny Moerkerke">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="demo/css/main.css" rel="stylesheet">
</head>
<body>
<header>
<i class="material-icons">folder_open</i>
<h1>file-tree</h1>
<a class="github" href="https://github.com/DannyMoerkerke/file-tree" target="_blank" rel="nofollow"></a>
</header>
<main>
<section id="menu">
<ul>
<li><a href="/file-tree">Demo</a></li>
<li><a href="/file-tree/getting-started">Getting started</a></li>
<li><a href="/file-tree/documentation">Documentation</a></li>
</ul>
</section>
<section id="content"></section>
</main>
<script src="demo/js/demo.js" type="module"></script>
</body>
</html>