frontend for xcvr appview
at 3ef1aeaf133e598f9ef2f132f8a8e2efabb39ce2 81 lines 2.8 kB view raw
1<!doctype html> 2<html lang="en"> 3 <!--\xxx\/xxx//ccccccc\\vvv\../vvv/|rr`'__|.and right now it is july--> 4 <!--.\xxxxxx/|ccc/.'---.\vvv\/vvv/.|rrr/......7 2025 and idrk how to--> 5 <!--./xxxxxx\|ccc\_,---..\vvvvvv/..|rr|........make the top of the r--> 6 <!--/xxx/\xxx\\ccccccc/...\vvvv/...|rr|..............................look good--> 7 <!--wow! it's now october 16 2025. i now use firefox, so i had to update this bc--> 8 <!--it renders multiline comments without newlines--> 9 <head> 10 <meta charset="utf-8" /> 11 <link rel="icon" href="%sveltekit.assets%/xcvr.svg" /> 12 <link rel="stylesheet" href="%sveltekit.assets%/main.css" /> 13 <link rel="preconnect" href="https://rsms.me/"> 14 <link rel="stylesheet" href="https://rsms.me/inter/inter.css"> 15 <meta name="viewport" content="width=device-width, initial-scale=1" /> 16 %sveltekit.head% 17 </head> 18 <body data-sveltekit-preload-data="hover"> 19 <svg width="0" height="0" style="display: none"> 20 <defs> 21 <filter id="vblur"> 22 <feGaussianBlur in="SourceGraphic" stdDeviation="0 16"/> 23 </filter> 24 <filter id="pearly" x="0" y="0" width="100vw" height="100vw" filterUnits="userSpaceOnUse"> 25 <feTurbulence 26 baseFrequency="0.002,0.005" 27 numOctaves="2" 28 seed="301" 29 type="fractalNoise" 30 result="turb1"/> 31 <feColorMatrix 32 type="hueRotate" 33 in="turb1" 34 result="colored1"> 35 <animate 36 attributeName="values" 37 values="0;360;0" 38 dur="11s" 39 repeatCount="indefinite"/> 40 </feColorMatrix> 41 <feTurbulence 42 baseFrequency="0.003,0.004" 43 numOctaves="2" 44 seed="302" 45 type="fractalNoise" 46 result="turb2"> 47 </feTurbulence> 48 <feColorMatrix 49 type="hueRotate" 50 in="turb2" 51 result="colored2"> 52 <animate 53 attributeName="values" 54 values="120;480;120" 55 dur="13s" 56 repeatCount="indefinite"/> 57 </feColorMatrix> 58 <feBlend 59 mode="multiply" 60 in="colored1" 61 in2="colored2" 62 result="blended-turbulence"/> 63 <feComposite 64 in="blended-turbulence" 65 in2="SourceAlpha" 66 operator="in" 67 result="masked-pattern"/> 68 <feBlend 69 in="masked-pattern" 70 in2="SourceGraphic" 71 mode="multiply"/> 72 </filter> 73 <filter id="knockout"> 74 <feFlood flood-color="white" flood-opacity="1" result="whiteFlood"/> 75 <feComposite in="whiteFlood" in2="SourceGraphic" operator="out" result="knockedOut"/> 76 </filter> 77 </defs> 78 </svg> 79 <div style="display: flex; flex-direction:column; justify-content: space-between; height:100vh; height: 100dvh;">%sveltekit.body%</div> 80 </body> 81</html>