forked from janosh/svelte-multiselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
50 lines (42 loc) · 1.69 KB
/
app.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 lang="en">
<head>
<title>Svelte MultiSelect</title>
<meta name="author" content="Janosh Riebesell" />
<meta name="og:card" content="summary" />
<meta name="twitter:site" content="@jrib_" />
<meta name="twitter:creator" content="@jrib_" />
<meta
name="description"
content="Keyboard-friendly, accessible Svelte MultiSelect component"
/>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta property="og:type" content="article" />
<meta property="og:image" content="favicon.svg" />
<meta
property="og:url"
content="https://janosh.github.io/svelte-multiselect"
/>
<meta property="twitter:site_name" content="Svelte MultiSelect" />
<script
defer
data-domain="janosh.github.io/svelte-multiselect"
src="https://plausible.io/js/plausible.js"
></script>
<link rel="icon" href="favicon.svg" />
<link rel="stylesheet" href="prism-vsc-dark-plus.css" />
%sveltekit.head%
</head>
<body data-sveltekit-prefetch>
<svg style="display: none">
<!-- https://primer.style/octicons/link-16 -->
<symbol id="octicon-link" fill="currentColor">
<path
d="M7.775 3.275a.75.75 0 0 0 1.06 1.06l1.25-1.25a2 2 0 1 1 2.83 2.83l-2.5 2.5a2 2 0 0 1-2.83 0 .75.75 0 0 0-1.06 1.06 3.5 3.5 0 0 0 4.95 0l2.5-2.5a3.5 3.5 0 0 0-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 0 1 0-2.83l2.5-2.5a2 2 0 0 1 2.83 0 .75.75 0 0 0 1.06-1.06 3.5 3.5 0 0 0-4.95 0l-2.5 2.5a3.5 3.5 0 0 0 4.95 4.95l1.25-1.25a.75.75 0 0 0-1.06-1.06l-1.25 1.25a2 2 0 0 1-2.83 0z"
/>
</symbol>
</svg>
<div>%sveltekit.body%</div>
</body>
</html>