msc-viewer

A possibly better way to display the Matrix Spec Changes
git clone git://archive.git.mtrnord.blog/MTRNord/msc-viewer.git
Log | Files | Refs | README | LICENSE

StartLayout.astro (507B)


      1 ---
      2 import "../styles/global.scss";
      3 interface Props {}
      4 ---
      5 
      6 <!doctype html>
      7 <html lang="en">
      8     <head>
      9         <meta charset="UTF-8" />
     10         <meta name="description" content="Matrix MSC Overview and search" />
     11         <meta name="viewport" content="width=device-width" />
     12         <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
     13         <meta name="generator" content={Astro.generator} />
     14         <title>Matrix MSCs Viewer</title>
     15     </head>
     16     <body>
     17         <slot />
     18     </body>
     19 </html>