19 lines
460 B
HTML
19 lines
460 B
HTML
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="./css/app.css">
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<script type="module" src="./js/index.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<lavender-widgets></lavender-widgets>
|
|
<a href="./edit.html" class="edit-link" target="_blank">Edit Widgets</a>
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
navigator.serviceWorker.register("./js/serviceworker.js", {scope: '.'});
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html> |