frontend for xcvr appview
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%/favicon.ico" />
12 <link rel="icon" href="%sveltekit.assets%/xcvr.svg" />
13 <link rel="stylesheet" href="%sveltekit.assets%/main.css" />
14 <link rel="preconnect" href="https://rsms.me/">
15 <link rel="stylesheet" href="https://rsms.me/inter/inter.css">
16 <meta name="viewport" content="width=device-width, initial-scale=1" />
17 %sveltekit.head%
18 </head>
19 <body data-sveltekit-preload-data="hover">
20 <svg width="0" height="0" style="display: none">
21 <defs>
22 <filter id="vblur">
23 <feGaussianBlur in="SourceGraphic" stdDeviation="0 16"/>
24 </filter>
25 <filter id="pearly" x="0" y="0" width="100vw" height="100vw" filterUnits="userSpaceOnUse">
26 <feTurbulence
27 baseFrequency="0.002,0.005"
28 numOctaves="2"
29 seed="301"
30 type="fractalNoise"
31 result="turb1"/>
32 <feColorMatrix
33 type="hueRotate"
34 in="turb1"
35 result="colored1">
36 <animate
37 attributeName="values"
38 values="0;360;0"
39 dur="11s"
40 repeatCount="indefinite"/>
41 </feColorMatrix>
42 <feTurbulence
43 baseFrequency="0.003,0.004"
44 numOctaves="2"
45 seed="302"
46 type="fractalNoise"
47 result="turb2">
48 </feTurbulence>
49 <feColorMatrix
50 type="hueRotate"
51 in="turb2"
52 result="colored2">
53 <animate
54 attributeName="values"
55 values="120;480;120"
56 dur="13s"
57 repeatCount="indefinite"/>
58 </feColorMatrix>
59 <feBlend
60 mode="multiply"
61 in="colored1"
62 in2="colored2"
63 result="blended-turbulence"/>
64 <feComposite
65 in="blended-turbulence"
66 in2="SourceAlpha"
67 operator="in"
68 result="masked-pattern"/>
69 <feBlend
70 in="masked-pattern"
71 in2="SourceGraphic"
72 mode="multiply"/>
73 </filter>
74 <filter id="knockout">
75 <feFlood flood-color="white" flood-opacity="1" result="whiteFlood"/>
76 <feComposite in="whiteFlood" in2="SourceGraphic" operator="out" result="knockedOut"/>
77 </filter>
78 </defs>
79 </svg>
80 <div style="display: flex; flex-direction:column; justify-content: space-between; height:100vh; height: 100dvh;">%sveltekit.body%</div>
81 </body>
82</html>