this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add SPA redirect

uwx 32779f90 0afd35f9

+1 -58
+1
public/_redirects
··· 1 + /* /index.html 200
-58
public/oauth-redirect.html
··· 1 - <!DOCTYPE html> 2 - <html> 3 - 4 - <head> 5 - <meta charset="utf-8"> 6 - <meta name="viewport" content="width=device-width, initial-scale=1"> 7 - <title>Kink list</title> 8 - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.css"> 9 - <meta property="og:title" content="Kink list" /> 10 - <meta property="og:type" content="website" /> 11 - <meta property="og:url" content="https://kinklist.gitlab.io/" /> 12 - <meta property="og:image" content="https://kinklist.gitlab.io/kinklistlogo.png" /> 13 - <meta property="og:image:type" content="image/png"> 14 - <meta property="og:image:width" content="512"> 15 - <meta property="og:image:height" content="512"> 16 - <meta property="og:image:alt" content="Kink list logo"> 17 - <meta property="og:description" content="Generate a list of your sexual preferences and kinks, then export and share your list!"> 18 - 19 - <!--<link rel="stylesheet" href="https://unpkg.com/bulma-prefers-dark@0.1.0-beta.0/css/bulma-prefers-dark.css">--> 20 - <link rel="stylesheet" href="https://unpkg.com/tippy.js@6/dist/tippy.css"> 21 - <script> 22 - // https://stackoverflow.com/a/56550819 23 - // determines if the user has a set theme 24 - function detectColorScheme() { 25 - let theme = 'light'; // default to light 26 - 27 - // local storage is used to override OS theme settings 28 - if (localStorage.getItem('theme')) { 29 - if (localStorage.getItem('theme') === 'dark') { 30 - theme = 'dark'; 31 - } 32 - } else if (!window.matchMedia) { 33 - // matchMedia method not supported 34 - theme = 'light'; 35 - } else if (window.matchMedia('(prefers-color-scheme: dark)').matches) { 36 - // OS theme setting detected as dark 37 - theme = 'dark'; 38 - } 39 - 40 - // dark theme preferred, set document with a `data-theme` attribute 41 - if (theme === 'dark') { 42 - document.documentElement.classList.add('theme-dark'); 43 - } 44 - } 45 - detectColorScheme(); 46 - </script> 47 - 48 - <link rel="stylesheet" href="style.css"> 49 - </head> 50 - 51 - <body> 52 - <div id="root"></div> 53 - 54 - <!-- defer is used here so that DOMTools is loaded in time as it's async --> 55 - <script src="kinklist.js"></script> 56 - </body> 57 - 58 - </html>