-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 988 Bytes
/
index.html
File metadata and controls
40 lines (38 loc) · 988 Bytes
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
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<style>
body {
background: #fafafa;
}
</style>
</head>
<script type="importmap" >
{
"imports": {
"@morbidick/lit-element-notify": "/web_modules/@morbidick/lit-element-notify.js",
"@preignition/preignition-mixin": "/web_modules/@preignition/preignition-mixin.js",
"@vaadin/vaadin-tabs": "/web_modules/@vaadin/vaadin-tabs.js",
"pwa-helpers/media-query.js": "/web_modules/pwa-helpers/media-query.js",
"lit-element": "/web_modules/lit-element.js",
"lit-html": "/web_modules/lit-html.js"
}
}
</script>
<body>
<div id="demo"></div>
<script type="module">
import { html, render } from 'lit-html';
import '/index.elements.js';
render(
html`
<preignition-blog-app >
some more light-dom
</preignition-blog-app>
`,
document.querySelector('#demo')
);
</script>
</body>
</html>