matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

index.html (718B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 
      4 <head>
      5   <meta charset="UTF-8" />
      6   <link rel="icon" type="image/svg+xml" href="/Logo_colored.svg" />
      7   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      8   <meta name="description" content="Matrix-Art is an image gallery for Matrix.">
      9   <title>Matrix Art</title>
     10   <script>
     11     global = globalThis // fix for "global not defined" error
     12     globalThis.OLM_OPTIONS = undefined; // Fix missing var for olm
     13   </script>
     14   <link rel="preconnect" href="<%= env.VITE_MATRIX_SERVER_URL %>">
     15 </head>
     16 
     17 <body>
     18   <noscript>You need to enable JavaScript to run this app.</noscript>
     19   <div id="app"></div>
     20   <script type="module" src="/src/main.tsx"></script>
     21 </body>
     22 
     23 </html>