fetch everything remotely

This commit is contained in:
metacryst
2026-04-09 06:22:32 -05:00
parent 14c885a60f
commit 8d5a63b262
74 changed files with 91 additions and 4510 deletions

View File

@@ -19,13 +19,28 @@
src="https://unpkg.com/@ionic/pwa-elements@latest/dist/ionicpwaelements/ionicpwaelements.js"
></script>
<link rel="icon" type="image/x-icon" href="./_/icons/columnwhite.svg" />
<link rel="manifest" href="./manifest.json" />
<link rel="stylesheet" href="./_/code/shared.css" />
<script src="/_/code/quill.js"></script>
<script type="module" src="./index.js"></script>
<script type="module">
await import('./util.js')
function appendScript(src, isModule = false) {
return new Promise((resolve, reject) => {
const s = document.createElement('script')
s.src = src
s.crossOrigin = "anonymous"
if (isModule) s.type = 'module'
s.onload = resolve
s.onerror = reject
document.head.appendChild(s)
})
}
await appendScript(window.util.HOST + '/_/code/quill.js')
await appendScript(window.util.HOST + '/83947261/index.js', true)
</script>
<meta name="theme-color" content="#31d53d" />
</head>
<body>
</body>
</html>
</html>