mosaic/public/index.html

23 lines
766 B
HTML
Raw Normal View History

2023-06-06 11:57:40 +00:00
<html>
<head>
<link rel="stylesheet" href="./css/app.css">
<link rel="manifest" href="./manifest.json" />
<script src="FONTAWESOME_SCRIPT_URL" crossorigin="anonymous"></script>
2023-06-06 11:57:40 +00:00
<script type="module" src="./js/index.js"></script>
</head>
<body>
<lavender-widgets></lavender-widgets>
<div class="link-box">
2023-06-06 15:27:05 +00:00
<a href="./edit.html" class="edit-link" target="_blank" alt="Edit Widgets"><i class="fa-solid fa-pen-to-square"></i></a>
<a href="https://rezrov.xyz/caranmegil/lavender" class="edit-link" target="_blank" alt="Source Code"><i class="fa-brands fa-square-git"></i></a>
</div>
2023-06-06 11:57:40 +00:00
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register("./js/serviceworker.js", {scope: '.'});
}
</script>
</body>
</html>