kiwijunglist

Untitled

Sep 2nd, 2025
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.81 KB | None | 0 0
  1.  
  2. <!doctype html>
  3. <html>
  4.   <head>
  5.     <!-- (used for SSR) -->
  6.     <!-- metadata:tags -->
  7.  
  8.     <meta charset="utf-8" />
  9.     <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
  10.     <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
  11.     <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" />
  12.     <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
  13.     <link rel="icon" type="image/png" sizes="48x48" href="/favicon-48.png" />
  14.     <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96.png" />
  15.     <link rel="icon" type="image/png" sizes="144x144" href="/favicon-144.png" />
  16.     <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180.png" />
  17.     <link rel="preload" as="font" type="font/ttf" href="/_app/immutable/assets/Overpass.DCP28BvT.ttf" crossorigin="anonymous" />
  18.     <link rel="preload" as="font" type="font/ttf" href="/_app/immutable/assets/OverpassMono.XkUhFDDw.ttf" crossorigin="anonymous" />
  19.    
  20.         <link rel="modulepreload" href="/_app/immutable/entry/start.DGiFDiFp.js">
  21.         <link rel="modulepreload" href="/_app/immutable/chunks/ow-mx9qu.js">
  22.         <link rel="modulepreload" href="/_app/immutable/chunks/C7AoV7bH.js">
  23.         <link rel="modulepreload" href="/_app/immutable/chunks/CYgJF_JY.js">
  24.         <link rel="modulepreload" href="/_app/immutable/entry/app.BuUD1UNJ.js">
  25.         <link rel="modulepreload" href="/_app/immutable/chunks/BXl3LOEh.js">
  26.         <link rel="modulepreload" href="/_app/immutable/chunks/CC_8Wp91.js">
  27.         <link rel="modulepreload" href="/_app/immutable/chunks/q-i3Iy4t.js">
  28.         <link rel="modulepreload" href="/_app/immutable/chunks/DQDqIg1F.js">
  29.         <link rel="modulepreload" href="/_app/immutable/chunks/DsnmJJEf.js">
  30.         <link rel="modulepreload" href="/_app/immutable/chunks/CKzWkb--.js">
  31.         <link rel="modulepreload" href="/_app/immutable/chunks/D_NJaNYm.js">
  32.     <style>
  33.       /* prevent FOUC */
  34.       html {
  35.         height: 100%;
  36.         width: 100%;
  37.       }
  38.  
  39.       body,
  40.       html {
  41.         margin: 0;
  42.         padding: 0;
  43.       }
  44.  
  45.       @keyframes delayedVisibility {
  46.         to {
  47.           visibility: visible;
  48.         }
  49.       }
  50.  
  51.       @keyframes loadspin {
  52.         100% {
  53.           transform: rotate(360deg);
  54.         }
  55.       }
  56.  
  57.       #stencil {
  58.         --stencil-width: 150px;
  59.         display: flex;
  60.         width: var(--stencil-width);
  61.         margin-left: auto;
  62.         margin-right: auto;
  63.         margin-top: calc(50vh - var(--stencil-width) / 2);
  64.         margin-bottom: 100vh;
  65.         place-items: center;
  66.         justify-content: center;
  67.         overflow: hidden;
  68.         visibility: hidden;
  69.         animation:
  70.           0s linear 0.3s forwards delayedVisibility,
  71.           loadspin 8s linear infinite;
  72.       }
  73.  
  74.       .bg-immich-bg {
  75.         background-color: white;
  76.       }
  77.  
  78.       .dark .dark\:bg-immich-dark-bg {
  79.         background-color: black;
  80.       }
  81.     </style>
  82.     <script>
  83.       /**
  84.        * Prevent FOUC on page load.
  85.        */
  86.       const colorThemeKeyName = 'color-theme';
  87.  
  88.       let theme = localStorage.getItem(colorThemeKeyName);
  89.       if (!theme) {
  90.         theme = { value: 'light', system: true };
  91.       } else if (theme === 'dark' || theme === 'light') {
  92.         theme = { value: theme, system: false };
  93.         localStorage.setItem(colorThemeKeyName, JSON.stringify(theme));
  94.       } else {
  95.         theme = JSON.parse(theme);
  96.       }
  97.  
  98.       let themeValue = theme.value;
  99.       if (theme.system) {
  100.         if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
  101.           themeValue = 'dark';
  102.         } else {
  103.           themeValue = 'light';
  104.         }
  105.       }
  106.  
  107.       if (themeValue === 'light') {
  108.         document.documentElement.classList.remove('dark');
  109.       } else {
  110.         document.documentElement.classList.add('dark');
  111.       }
  112.     </script>
  113.  
  114.     <link rel="stylesheet" href="/custom.css" />
  115.   </head>
  116.  
  117.   <noscript
  118.    class="absolute z-1000 flex h-screen w-screen place-content-center place-items-center bg-immich-bg dark:bg-immich-dark-bg dark:text-immich-dark-fg"
  119.  >
  120.     To use Immich, you must enable JavaScript or use a JavaScript compatible browser.
  121.   </noscript>
  122.  
  123.   <body class="bg-light text-dark">
  124.     <div id="stencil">
  125.       <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 792 792">
  126.         <style type="text/css">
  127.           .st0 {
  128.             fill: #fa2921;
  129.           }
  130.           .st1 {
  131.             fill: #ed79b5;
  132.           }
  133.           .st2 {
  134.             fill: #ffb400;
  135.           }
  136.           .st3 {
  137.             fill: #1e83f7;
  138.           }
  139.           .st4 {
  140.             fill: #18c249;
  141.           }
  142.         </style>
  143.         <g>
  144.           <path
  145.            class="st0"
  146.            d="M375.48,267.63c38.64,34.21,69.78,70.87,89.82,105.42c34.42-61.56,57.42-134.71,57.71-181.3
  147.         c0-0.33,0-0.63,0-0.91c0-68.94-68.77-95.77-128.01-95.77s-128.01,26.83-128.01,95.77c0,0.94,0,2.2,0,3.72
  148.         C300.01,209.24,339.15,235.47,375.48,267.63z"
  149.          />
  150.           <path
  151.            class="st1"
  152.            d="M164.7,455.63c24.15-26.87,61.2-55.99,103.01-80.61c44.48-26.18,88.97-44.47,128.02-52.84
  153.         c-47.91-51.76-110.37-96.24-154.6-110.91c-0.31-0.1-0.6-0.19-0.86-0.28c-65.57-21.3-112.34,35.81-130.64,92.15
  154.         c-18.3,56.34-14.04,130.04,51.53,151.34C162.05,454.77,163.25,455.16,164.7,455.63z"
  155.          />
  156.           <path
  157.            class="st2"
  158.            d="M681.07,302.19c-18.3-56.34-65.07-113.45-130.64-92.15c-0.9,0.29-2.1,0.68-3.54,1.15
  159.         c-3.75,35.93-16.6,81.27-35.96,125.76c-20.59,47.32-45.84,88.27-72.51,118c69.18,13.72,145.86,12.98,190.26-1.14
  160.         c0.31-0.1,0.6-0.2,0.86-0.28C695.11,432.22,699.37,358.52,681.07,302.19z"
  161.          />
  162.           <path
  163.            class="st3"
  164.            d="M336.54,510.71c-11.15-50.39-14.8-98.36-10.7-138.08c-64.03,29.57-125.63,75.23-153.26,112.76
  165.         c-0.19,0.26-0.37,0.51-0.53,0.73c-40.52,55.78-0.66,117.91,47.27,152.72c47.92,34.82,119.33,53.54,159.86-2.24
  166.         c0.56-0.76,1.3-1.78,2.19-3.01C363.28,602.32,347.02,558.08,336.54,510.71z"
  167.          />
  168.           <path
  169.            class="st4"
  170.            d="M617.57,482.52c-35.33,7.54-82.42,9.33-130.72,4.66c-51.37-4.96-98.11-16.32-134.63-32.5
  171.         c8.33,70.03,32.73,142.73,59.88,180.6c0.19,0.26,0.37,0.51,0.53,0.73c40.52,55.78,111.93,37.06,159.86,2.24
  172.         c47.92-34.82,87.79-96.95,47.27-152.72C619.2,484.77,618.46,483.75,617.57,482.52z"
  173.          />
  174.         </g>
  175.       </svg>
  176.     </div>
  177.     <div>
  178.             <script>
  179.                 {
  180.                     __sveltekit_inhk2e = {
  181.                         base: ""
  182.                     };
  183.  
  184.                     const element = document.currentScript.parentElement;
  185.  
  186.                     Promise.all([
  187.                         import("/_app/immutable/entry/start.DGiFDiFp.js"),
  188.                         import("/_app/immutable/entry/app.BuUD1UNJ.js")
  189.                     ]).then(([kit, app]) => {
  190.                         kit.start(app, element);
  191.                     });
  192.  
  193.                     if ('serviceWorker' in navigator) {
  194.                         addEventListener('load', function () {
  195.                             navigator.serviceWorker.register('/service-worker.js');
  196.                         });
  197.                     }
  198.                 }
  199.             </script>
  200.         </div>
  201.   <script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'9759d0d8fcf5d9a4',t:'MTc1NjI3OTMyNQ=='};var a=document.createElement('script');a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script></body>
  202. </html>
  203.  
Advertisement
Add Comment
Please, Sign In to add comment