this repo has no description yoyle.city
nekoweb html css javascript astro

final fix

+8 -8
+5 -5
public/reftek/settings.js
··· 12 12 // ADD ANGLES HERE. 13 13 // Display name first, file path second. 14 14 const angles = [ 15 - ["Front", "images/cheesycake.png"], 16 - ["Back", "images/cheesycake-back.png"] 15 + ["Front", "../images/cheesycake.png"], 16 + ["Back", "../images/cheesycake-back.png"] 17 17 ] 18 18 19 19 // ANGLE TOGGLES ··· 25 25 // ADD OUTFITS HERE. 26 26 // Display name first, file path second. 27 27 const outfits = [ 28 - ["Clothed", "images/cheesycake-clothes.png"], 29 - ["Naked", "images/cheesycake.png"], 30 - ["Underwear", "images/cheesycake-gaypanties.png"] 28 + ["Clothed", "../images/cheesycake-clothes.png"], 29 + ["Naked", "../images/cheesycake.png"], 30 + ["Underwear", "../images/cheesycake-gaypanties.png"] 31 31 ] 32 32 33 33 // ADD INFO HERE.
+3 -3
src/pages/reftek/cheesecake.astro
··· 7 7 <head> 8 8 <title>Cheesecake's reference sheet</title> 9 9 <HeadTags /> 10 - <link rel="stylesheet" type="text/css" href="./reftek-base.css" /> 10 + <link rel="stylesheet" type="text/css" href="../reftek-base.css" /> 11 11 <link rel="preload" /> 12 12 <style> 13 13 /* Temporary solution until the beta to keep updates simpler */ ··· 56 56 </section> 57 57 </div> 58 58 </body> 59 - <script src="./settings.js" is:inline></script> 60 - <script src="./script.js" is:inline></script> 59 + <script src="../settings.js" is:inline></script> 60 + <script src="../script.js" is:inline></script> 61 61 </html>