-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (54 loc) · 1.36 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
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/>
<title>svelteup</title>
<meta name="description" content="bundle svelte custom element with ease" />
<meta property="og:title" content="svelteup" />
<meta
property="og:description"
content="bundle svelte custom element with ease"
/>
<meta name="twitter:card" content="summary" />
<!-- Stylesheet -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@egoist/docup@2/dist/docup.min.css"
/>
<style>
.logo-dark {
display: none;
}
@media (prefers-color-scheme: dark) {
.logo {
display: none;
}
.logo-dark {
display: block;
}
}
</style>
</head>
<body>
<script type="module">
import * as docup from 'https://cdn.jsdelivr.net/npm/@egoist/docup@2/dist/docup.min.js'
docup.init({
navLinks: [
{
text: `GitHub`,
link: `https://github.com/brandonxiang/svelteup`,
},
{
text: `Brandonxiang`,
link: `https://brandonxiang.top`,
},
],
})
</script>
</body>
</html>