Blame view

static/index.html 414 Bytes
Georg Hopp authored
1 2 3 4
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
5
        <title>Stefanie's Artshop</title>
Georg Hopp authored
6 7 8 9
        <link rel="stylesheet" href="/static/style.css">
    </head>
    <body>
        <script type="module">
10
         import init from '/ui/artshop_frontend.js';
Georg Hopp authored
11 12 13 14 15 16
         window.addEventListener('load', async () => {
             await init();
         });
        </script>
    </body>
</html>