23 lines
585 B
HTML
23 lines
585 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Sis — Household Chore Tracker</title>
|
|
<link rel="manifest" href="/manifest.json">
|
|
<link rel="stylesheet" href="https://unpkg.com/neobrutalismcss@latest">
|
|
<link rel="stylesheet" href="/style.css">
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"mithril": "https://esm.sh/mithril@2.2.13"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/index.js"></script>
|
|
</body>
|
|
</html>
|