-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<html lang="en" class="sl-theme-dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="./index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>fragmemo</title>
<script type="module" src="/src/components.ts"></script>
<script type="module" src="/src/split-pane.ts"></script>
<script src="https://unpkg.com/[email protected]/lib/umd/tinybase.js"></script>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/themes/dark.css" />
<script type="module"
src="https://cdn.jsdelivr.net/npm/@shoelace-style/[email protected]/dist/shoelace.js"></script>
</head>
<body>
<div class="split">
<settings-element></settings-element>
<snippet-list id="split-0"></snippet-list>
<home-element id="split-1">
<no-snippets-element slot="no-snippets"></no-snippets-element>
</home-element>
</div>
</body>
</html>