mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 13:04:30 -08:00
14 lines
278 B
HTML
14 lines
278 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Todos Example</title>
|
|
<script type='module'>
|
|
if(new URLSearchParams(window.location.search).get('leporello') == null) {
|
|
await import('./index.js');
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|