2024-02-14 16:13:59 +00:00
|
|
|
<!DOCTYPE html>
|
2023-06-06 11:57:40 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="./css/app.css">
|
|
|
|
<link rel="manifest" href="./manifest.json" />
|
2023-06-06 15:05:40 +00:00
|
|
|
<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>
|
2023-06-06 15:05:40 +00:00
|
|
|
<div class="link-box">
|
2023-06-06 22:07:17 +00:00
|
|
|
<a href="./edit.html" class="edit-link" alt="Edit Widgets"><i class="fa-solid fa-pen-to-square"></i></a>
|
2023-06-06 15:27:05 +00:00
|
|
|
<a href="https://rezrov.xyz/caranmegil/lavender" class="edit-link" target="_blank" alt="Source Code"><i class="fa-brands fa-square-git"></i></a>
|
2023-06-06 15:05:40 +00:00
|
|
|
</div>
|
2023-06-06 11:57:40 +00:00
|
|
|
<script>
|
|
|
|
if ('serviceWorker' in navigator) {
|
|
|
|
navigator.serviceWorker.register("./js/serviceworker.js", {scope: '.'});
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|