tangled
alpha
login
or
join now
yoyle.city
/
website
1
fork
atom
this repo has no description
yoyle.city
nekoweb
html
css
javascript
astro
1
fork
atom
overview
issues
pulls
pipelines
final fix
lime360
3 months ago
a6ee69ec
81bf5237
1/1
build.yml
success
9s
+8
-8
2 changed files
expand all
collapse all
unified
split
public
reftek
settings.js
src
pages
reftek
cheesecake.astro
+5
-5
public/reftek/settings.js
···
12
12
// ADD ANGLES HERE.
13
13
// Display name first, file path second.
14
14
const angles = [
15
15
-
["Front", "images/cheesycake.png"],
16
16
-
["Back", "images/cheesycake-back.png"]
15
15
+
["Front", "../images/cheesycake.png"],
16
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
28
-
["Clothed", "images/cheesycake-clothes.png"],
29
29
-
["Naked", "images/cheesycake.png"],
30
30
-
["Underwear", "images/cheesycake-gaypanties.png"]
28
28
+
["Clothed", "../images/cheesycake-clothes.png"],
29
29
+
["Naked", "../images/cheesycake.png"],
30
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
10
-
<link rel="stylesheet" type="text/css" href="./reftek-base.css" />
10
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
59
-
<script src="./settings.js" is:inline></script>
60
60
-
<script src="./script.js" is:inline></script>
59
59
+
<script src="../settings.js" is:inline></script>
60
60
+
<script src="../script.js" is:inline></script>
61
61
</html>