blob: c1aa1727da194869c4c344f6db335b5dfdfa4d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="importmap">
{
"imports": {
"sfw": "./sfw/index.js",
"api": "./api/index.js",
"icons": "./icons/index.js",
"widgets": "./widgets/index.js",
"pages": "./pages/index.js"
}
}
</script>
<title>Memora</title>
<script type="module" src="index.js"></script>
<link rel="icon" href="icon.png" type="image/png">
<link rel="manifest" href="manifest.json" />
</head>
<body>
</body>
</html>
|