41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Pinepods</title>
|
|
<link rel="stylesheet" href="/static/styles.css" />
|
|
<link data-trunk rel="tailwind-css" href="src/tailwind.css" />
|
|
<script src="/static/js_func.js"></script>
|
|
<link data-trunk rel="copy-dir" href="static" />
|
|
<link rel="icon" type="image/png" href="/static/assets/favicon.png" />
|
|
<link href="/static/assets/phosphor.css" rel="stylesheet" />
|
|
<link rel="manifest" href="static/manifest.json" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<script>
|
|
if ("serviceWorker" in navigator) {
|
|
window.addEventListener("load", () => {
|
|
navigator.serviceWorker
|
|
.register("static/sw.js")
|
|
.then((registration) => {
|
|
console.log(
|
|
"ServiceWorker registration successful",
|
|
);
|
|
})
|
|
.catch((err) => {
|
|
console.log(
|
|
"ServiceWorker registration failed: ",
|
|
err,
|
|
);
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<!-- <link data-trunk rel="icon" href="src/yew.svg"/>-->
|
|
<!-- <link data-trunk rel="copy-file" href="src/yew.svg"/>-->
|
|
<base data-trunk-public-url />
|
|
</head>
|
|
<body></body>
|
|
</html>
|