- this adds a new demo web app with vite HMR for development - all examples are covered with e2e tests
20 lines
739 B
HTML
20 lines
739 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Templating</title>
|
|
<script type="module" src="./index.js"></script>
|
|
<script type="module" src="./with-lit.js"></script>
|
|
<script>try{document.documentElement.dataset.theme=localStorage.getItem('wcb-theme')||(matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light')}catch(e){}</script>
|
|
<link rel="stylesheet" href="../../shell.css" />
|
|
<script type="module" src="../../shell.js"></script>
|
|
</head>
|
|
<body>
|
|
<h2>With our html</h2>
|
|
<my-counter></my-counter>
|
|
<hr />
|
|
<h2>With lit-html</h2>
|
|
<lit-counter></lit-counter>
|
|
</body>
|
|
</html>
|