| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script type="importmap">
- {
- "imports": {
- "assets/": "./scripts/assets/",
- "space/": "./scripts/space/",
- "shelf/": "./scripts/shelf/",
- "selector/": "./scripts/selector/",
- "settings/": "./scripts/settings/",
- "interface/": "./scripts/interface/",
- "three-js": "https://cdn.jsdelivr.net/npm/[email protected]/build/three.module.js",
- "three-js/addons/": "https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/"
- }
- }
- </script>
- <script type="module" src="scripts/loader.js"></script>
- <link rel="stylesheet" type="text/css" href="theme/style/loader.css">
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
- </head>
- <body>
- <div class="app"></div>
- </body>
- </html>
|