34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<meta name="theme-color" content="#f7f4ef" />
|
|
<meta name="color-scheme" content="light" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<title>every.channel</title>
|
|
<link rel="manifest" href="manifest.webmanifest" />
|
|
<link rel="icon" href="icons/icon-192.png" />
|
|
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png" />
|
|
|
|
<link data-trunk rel="css" href="style.css" />
|
|
<link data-trunk rel="rust" data-wasm-opt="z" />
|
|
|
|
<link data-trunk rel="copy-file" href="manifest.webmanifest" />
|
|
<link data-trunk rel="copy-file" href="sw.js" />
|
|
<link data-trunk rel="copy-dir" href="icons" />
|
|
</head>
|
|
<body>
|
|
<div id="main"></div>
|
|
|
|
<script>
|
|
// Installable app shell (PWA). Keep this tiny and resilient.
|
|
if ("serviceWorker" in navigator) {
|
|
window.addEventListener("load", () => {
|
|
navigator.serviceWorker.register("./sw.js").catch(() => {});
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|