@bluedynamics/cdk8s-plone 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +26 -7
- package/API.md +16 -0
- package/CLAUDE.md +352 -0
- package/README.md +55 -178
- package/documentation/Makefile +357 -0
- package/documentation/README.md +284 -0
- package/documentation/mx.ini +3 -0
- package/documentation/sources/_static/brand-theme.css +685 -0
- package/documentation/sources/_static/custom-icons.css +123 -0
- package/documentation/sources/_static/fonts/hack/Hack-Regular.woff2 +0 -0
- package/documentation/sources/_static/fonts/orbitron/Orbitron-Black.woff2 +11 -0
- package/documentation/sources/_static/fonts/orbitron/Orbitron-Bold.woff2 +11 -0
- package/documentation/sources/_static/fonts/orbitron/Orbitron-Regular.woff2 +0 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-Bold.woff2 +11 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-Medium.woff2 +11 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-Regular.woff2 +11 -0
- package/documentation/sources/_static/fonts/rajdhani/Rajdhani-SemiBold.woff2 +11 -0
- package/documentation/sources/_static/kup6s-icon-explanation.svg +32 -0
- package/documentation/sources/_static/kup6s-icon-howto.svg +34 -0
- package/documentation/sources/_static/kup6s-icon-plone.svg +79 -0
- package/documentation/sources/_static/kup6s-icon-reference.svg +34 -0
- package/documentation/sources/_static/kup6s-icon-tutorials.svg +30 -0
- package/documentation/sources/_static/logo-fix.js +12 -0
- package/documentation/sources/conf.py +105 -0
- package/documentation/sources/explanation/architecture.md +311 -0
- package/documentation/sources/explanation/features.md +353 -0
- package/documentation/sources/explanation/index.md +51 -0
- package/documentation/sources/how-to/index.md +56 -0
- package/documentation/sources/how-to/setup-prerequisites.md +354 -0
- package/documentation/sources/index.md +108 -0
- package/documentation/sources/reference/api/.gitkeep +1 -0
- package/documentation/sources/reference/configuration-options.md +370 -0
- package/documentation/sources/reference/index.md +59 -0
- package/documentation/sources/tutorials/01-quick-start.md +157 -0
- package/documentation/sources/tutorials/index.md +48 -0
- package/lib/httpcache.d.ts +6 -0
- package/lib/httpcache.js +4 -2
- package/lib/plone.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
/* Custom icon styling for KUP6S documentation */
|
|
2
|
+
|
|
3
|
+
/* Eyebrow headings - context labels with icons above page titles */
|
|
4
|
+
.eyebrow {
|
|
5
|
+
font-size: 0.875rem;
|
|
6
|
+
font-weight: 600;
|
|
7
|
+
text-transform: uppercase;
|
|
8
|
+
letter-spacing: 0.05em;
|
|
9
|
+
color: var(--sy-c-link, #00d4ff);
|
|
10
|
+
margin-bottom: 0.75rem;
|
|
11
|
+
margin-top: 0;
|
|
12
|
+
display: flex;
|
|
13
|
+
align-items: center;
|
|
14
|
+
gap: 0.5rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.eyebrow img {
|
|
18
|
+
width: 20px;
|
|
19
|
+
height: 20px;
|
|
20
|
+
display: inline-block;
|
|
21
|
+
vertical-align: middle;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Page metadata grid - text left, icon right */
|
|
25
|
+
.page-metadata {
|
|
26
|
+
display: grid;
|
|
27
|
+
grid-template-columns: 1fr auto;
|
|
28
|
+
gap: 2rem;
|
|
29
|
+
align-items: center;
|
|
30
|
+
margin: 1.5rem 0;
|
|
31
|
+
padding: 1.25rem;
|
|
32
|
+
background: rgba(0, 212, 255, 0.05);
|
|
33
|
+
border-left: 3px solid var(--sy-c-link, #00d4ff);
|
|
34
|
+
border-radius: 4px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.metadata-content p {
|
|
38
|
+
margin: 0.35rem 0;
|
|
39
|
+
font-size: 0.95rem;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.metadata-content p:first-child {
|
|
43
|
+
margin-top: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.metadata-content p:last-child {
|
|
47
|
+
margin-bottom: 0;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.metadata-icon img {
|
|
51
|
+
width: 96px;
|
|
52
|
+
height: 96px;
|
|
53
|
+
opacity: 0.9;
|
|
54
|
+
display: block;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/* Link styling - make links visible in content area */
|
|
58
|
+
.sy-c article a:not(.sd-card-link),
|
|
59
|
+
.sy-c article li a,
|
|
60
|
+
.sy-c article ul a,
|
|
61
|
+
.sy-c article ol a,
|
|
62
|
+
.toctree-l1 > a,
|
|
63
|
+
.toctree-l2 > a,
|
|
64
|
+
.toctree-l3 > a,
|
|
65
|
+
.toctree-l4 > a {
|
|
66
|
+
color: var(--sy-c-link, #00d4ff) !important;
|
|
67
|
+
text-decoration: underline;
|
|
68
|
+
text-decoration-color: rgba(0, 212, 255, 0.3);
|
|
69
|
+
text-underline-offset: 0.2em;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.sy-c article a:not(.sd-card-link):hover,
|
|
73
|
+
.sy-c article li a:hover,
|
|
74
|
+
.sy-c article ul a:hover,
|
|
75
|
+
.sy-c article ol a:hover,
|
|
76
|
+
.toctree-l1 > a:hover,
|
|
77
|
+
.toctree-l2 > a:hover,
|
|
78
|
+
.toctree-l3 > a:hover,
|
|
79
|
+
.toctree-l4 > a:hover {
|
|
80
|
+
color: var(--sy-c-link-hover, #00f0ff) !important;
|
|
81
|
+
text-decoration-color: rgba(0, 212, 255, 0.6);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Large centered section header icons */
|
|
85
|
+
.section-icon-large {
|
|
86
|
+
width: 128px !important;
|
|
87
|
+
height: 128px !important;
|
|
88
|
+
max-width: 128px !important;
|
|
89
|
+
display: block;
|
|
90
|
+
margin: 1rem auto 1rem auto !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* Medium centered section icons */
|
|
94
|
+
.section-icon-medium {
|
|
95
|
+
width: 96px !important;
|
|
96
|
+
height: 96px !important;
|
|
97
|
+
max-width: 96px !important;
|
|
98
|
+
display: block;
|
|
99
|
+
margin: 1.5rem auto 1rem auto !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/* Small subsection icons (left-aligned) */
|
|
103
|
+
.section-icon-small {
|
|
104
|
+
width: 48px !important;
|
|
105
|
+
height: 48px !important;
|
|
106
|
+
max-width: 48px !important;
|
|
107
|
+
display: inline-block;
|
|
108
|
+
margin-right: 0.75rem;
|
|
109
|
+
vertical-align: middle;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/* Icon container for better spacing */
|
|
113
|
+
.icon-header-wrapper {
|
|
114
|
+
text-align: center;
|
|
115
|
+
margin-bottom: 1rem;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.icon-header-wrapper img {
|
|
119
|
+
width: 120px;
|
|
120
|
+
height: 120px;
|
|
121
|
+
display: block;
|
|
122
|
+
margin: 0 auto;
|
|
123
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang=en>
|
|
3
|
+
<meta charset=utf-8>
|
|
4
|
+
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
|
5
|
+
<title>Error 404 (Not Found)!!1</title>
|
|
6
|
+
<style>
|
|
7
|
+
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
|
|
8
|
+
</style>
|
|
9
|
+
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
|
|
10
|
+
<p><b>404.</b> <ins>That’s an error.</ins>
|
|
11
|
+
<p>The requested URL <code>/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyBSmBoWgz.woff2</code> was not found on this server. <ins>That’s all we know.</ins>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang=en>
|
|
3
|
+
<meta charset=utf-8>
|
|
4
|
+
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
|
5
|
+
<title>Error 404 (Not Found)!!1</title>
|
|
6
|
+
<style>
|
|
7
|
+
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
|
|
8
|
+
</style>
|
|
9
|
+
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
|
|
10
|
+
<p><b>404.</b> <ins>That’s an error.</ins>
|
|
11
|
+
<p>The requested URL <code>/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKSmBoWgz.woff2</code> was not found on this server. <ins>That’s all we know.</ins>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang=en>
|
|
3
|
+
<meta charset=utf-8>
|
|
4
|
+
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
|
5
|
+
<title>Error 404 (Not Found)!!1</title>
|
|
6
|
+
<style>
|
|
7
|
+
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
|
|
8
|
+
</style>
|
|
9
|
+
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
|
|
10
|
+
<p><b>404.</b> <ins>That’s an error.</ins>
|
|
11
|
+
<p>The requested URL <code>/s/rajdhani/v15/LDI2apCSOBg7S-QT7p65F-eug-I.woff2</code> was not found on this server. <ins>That’s all we know.</ins>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang=en>
|
|
3
|
+
<meta charset=utf-8>
|
|
4
|
+
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
|
5
|
+
<title>Error 404 (Not Found)!!1</title>
|
|
6
|
+
<style>
|
|
7
|
+
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
|
|
8
|
+
</style>
|
|
9
|
+
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
|
|
10
|
+
<p><b>404.</b> <ins>That’s an error.</ins>
|
|
11
|
+
<p>The requested URL <code>/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF-eug-I.woff2</code> was not found on this server. <ins>That’s all we know.</ins>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang=en>
|
|
3
|
+
<meta charset=utf-8>
|
|
4
|
+
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
|
5
|
+
<title>Error 404 (Not Found)!!1</title>
|
|
6
|
+
<style>
|
|
7
|
+
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
|
|
8
|
+
</style>
|
|
9
|
+
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
|
|
10
|
+
<p><b>404.</b> <ins>That’s an error.</ins>
|
|
11
|
+
<p>The requested URL <code>/s/rajdhani/v15/LDIxapCSOBg7S-QT7p4GM_eSqw.woff2</code> was not found on this server. <ins>That’s all we know.</ins>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang=en>
|
|
3
|
+
<meta charset=utf-8>
|
|
4
|
+
<meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
|
|
5
|
+
<title>Error 404 (Not Found)!!1</title>
|
|
6
|
+
<style>
|
|
7
|
+
*{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}
|
|
8
|
+
</style>
|
|
9
|
+
<a href=//www.google.com/><span id=logo aria-label=Google></span></a>
|
|
10
|
+
<p><b>404.</b> <ins>That’s an error.</ins>
|
|
11
|
+
<p>The requested URL <code>/s/rajdhani/v15/LDI2apCSOBg7S-QT7qa4F-eug-I.woff2</code> was not found on this server. <ins>That’s all we know.</ins>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(50, 50)">
|
|
3
|
+
<path d="M -35,-35 L -30,-35 L -30,-30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
4
|
+
<path d="M -35,35 L -30,35 L -30,30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
5
|
+
<path d="M 35,-35 L 30,-35 L 30,-30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
6
|
+
<path d="M 35,35 L 30,35 L 30,30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
7
|
+
|
|
8
|
+
<line x1="-25" y1="-15" x2="25" y2="-15" stroke="#00d4ff" stroke-width="1" opacity="0.4"/>
|
|
9
|
+
<line x1="-25" y1="15" x2="25" y2="15" stroke="#ff00ff" stroke-width="1" opacity="0.4"/>
|
|
10
|
+
|
|
11
|
+
<!-- Explanation: Document with lightbulb/understanding symbol -->
|
|
12
|
+
<rect x="-12" y="-16" width="24" height="32" fill="none" stroke="#00d4ff" stroke-width="2.5"/>
|
|
13
|
+
<path d="M 12,-16 L 12,-10 L 6,-10" fill="none" stroke="#ff00ff" stroke-width="2"/>
|
|
14
|
+
<path d="M 6,-10 L 12,-10 L 12,-16" fill="#ff00ff" opacity="0.3"/>
|
|
15
|
+
|
|
16
|
+
<!-- Lightbulb for understanding -->
|
|
17
|
+
<circle cx="0" cy="-2" r="6" fill="none" stroke="#ff00ff" stroke-width="2"/>
|
|
18
|
+
<path d="M -3,4 L -3,7 L 3,7 L 3,4" fill="none" stroke="#00d4ff" stroke-width="1.5"/>
|
|
19
|
+
<line x1="-1" y1="8" x2="1" y2="8" stroke="#00d4ff" stroke-width="1.5"/>
|
|
20
|
+
|
|
21
|
+
<!-- Light rays -->
|
|
22
|
+
<line x1="-8" y1="-2" x2="-10" y2="-2" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
23
|
+
<line x1="8" y1="-2" x2="10" y2="-2" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
24
|
+
<line x1="-5" y1="-7" x2="-7" y2="-9" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
25
|
+
<line x1="5" y1="-7" x2="7" y2="-9" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
26
|
+
|
|
27
|
+
<line x1="-12" y1="-10" x2="-12" y2="16" stroke="#ff00ff" stroke-width="3" opacity="0.4"/>
|
|
28
|
+
|
|
29
|
+
<circle cx="-28" cy="0" r="2" fill="#00d4ff" opacity="0.8"/>
|
|
30
|
+
<circle cx="28" cy="0" r="2" fill="#ff00ff" opacity="0.8"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(50, 50)">
|
|
3
|
+
<path d="M -35,-35 L -30,-35 L -30,-30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
4
|
+
<path d="M -35,35 L -30,35 L -30,30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
5
|
+
<path d="M 35,-35 L 30,-35 L 30,-30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
6
|
+
<path d="M 35,35 L 30,35 L 30,30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
7
|
+
|
|
8
|
+
<line x1="-25" y1="-15" x2="25" y2="-15" stroke="#00d4ff" stroke-width="1" opacity="0.4"/>
|
|
9
|
+
<line x1="-25" y1="15" x2="25" y2="15" stroke="#ff00ff" stroke-width="1" opacity="0.4"/>
|
|
10
|
+
|
|
11
|
+
<!-- How-to: Document with numbered steps/checklist -->
|
|
12
|
+
<rect x="-12" y="-16" width="24" height="32" fill="none" stroke="#00d4ff" stroke-width="2.5"/>
|
|
13
|
+
<path d="M 12,-16 L 12,-10 L 6,-10" fill="none" stroke="#ff00ff" stroke-width="2"/>
|
|
14
|
+
<path d="M 6,-10 L 12,-10 L 12,-16" fill="#ff00ff" opacity="0.3"/>
|
|
15
|
+
|
|
16
|
+
<!-- Numbered steps -->
|
|
17
|
+
<circle cx="-7" cy="-6" r="2" fill="none" stroke="#ff00ff" stroke-width="1.5"/>
|
|
18
|
+
<text x="-7" y="-4" font-family="Arial" font-size="6" fill="#ff00ff" text-anchor="middle" font-weight="bold">1</text>
|
|
19
|
+
<line x1="-3" y1="-6" x2="8" y2="-6" stroke="#ff00ff" stroke-width="1.5" opacity="0.8"/>
|
|
20
|
+
|
|
21
|
+
<circle cx="-7" cy="1" r="2" fill="none" stroke="#ff00ff" stroke-width="1.5"/>
|
|
22
|
+
<text x="-7" y="3" font-family="Arial" font-size="6" fill="#ff00ff" text-anchor="middle" font-weight="bold">2</text>
|
|
23
|
+
<line x1="-3" y1="1" x2="8" y2="1" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
24
|
+
|
|
25
|
+
<circle cx="-7" cy="8" r="2" fill="none" stroke="#00d4ff" stroke-width="1.5"/>
|
|
26
|
+
<text x="-7" y="10" font-family="Arial" font-size="6" fill="#00d4ff" text-anchor="middle" font-weight="bold">3</text>
|
|
27
|
+
<line x1="-3" y1="8" x2="6" y2="8" stroke="#00d4ff" stroke-width="1.5" opacity="0.4"/>
|
|
28
|
+
|
|
29
|
+
<line x1="-12" y1="-10" x2="-12" y2="16" stroke="#ff00ff" stroke-width="3" opacity="0.4"/>
|
|
30
|
+
|
|
31
|
+
<circle cx="-28" cy="0" r="2" fill="#00d4ff" opacity="0.8"/>
|
|
32
|
+
<circle cx="28" cy="0" r="2" fill="#ff00ff" opacity="0.8"/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(50, 50)">
|
|
3
|
+
<!-- Scanlines (CRT effect - reduced) -->
|
|
4
|
+
<line x1="-35" y1="-28" x2="35" y2="-28" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
5
|
+
<line x1="-35" y1="-20" x2="35" y2="-20" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
6
|
+
<line x1="-35" y1="-12" x2="35" y2="-12" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
7
|
+
<line x1="-35" y1="-4" x2="35" y2="-4" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
8
|
+
<line x1="-35" y1="4" x2="35" y2="4" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
9
|
+
<line x1="-35" y1="12" x2="35" y2="12" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
10
|
+
<line x1="-35" y1="20" x2="35" y2="20" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
11
|
+
<line x1="-35" y1="28" x2="35" y2="28" stroke="#00d4ff" stroke-width="0.3" opacity="0.12"/>
|
|
12
|
+
|
|
13
|
+
<!-- Corner brackets -->
|
|
14
|
+
<path d="M -35,-35 L -30,-35 L -30,-30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
15
|
+
<path d="M -35,35 L -30,35 L -30,30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
16
|
+
<path d="M 35,-35 L 30,-35 L 30,-30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
17
|
+
<path d="M 35,35 L 30,35 L 30,30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
18
|
+
|
|
19
|
+
<!-- Glitch lines (digital corruption effect - subtle) -->
|
|
20
|
+
<!-- Top left glitches -->
|
|
21
|
+
<line x1="-33" y1="-36" x2="-30" y2="-36" stroke="#ff00ff" stroke-width="1" opacity="0.3"/>
|
|
22
|
+
<!-- Top right glitches -->
|
|
23
|
+
<line x1="30" y1="-36" x2="33" y2="-36" stroke="#00d4ff" stroke-width="1" opacity="0.3"/>
|
|
24
|
+
<!-- Bottom left glitches -->
|
|
25
|
+
<line x1="-33" y1="36" x2="-30" y2="36" stroke="#00d4ff" stroke-width="1" opacity="0.3"/>
|
|
26
|
+
<!-- Bottom right glitches -->
|
|
27
|
+
<line x1="30" y1="36" x2="33" y2="36" stroke="#ff00ff" stroke-width="1" opacity="0.3"/>
|
|
28
|
+
|
|
29
|
+
<line x1="-25" y1="-15" x2="25" y2="-15" stroke="#00d4ff" stroke-width="1" opacity="0.4"/>
|
|
30
|
+
<line x1="-25" y1="15" x2="25" y2="15" stroke="#ff00ff" stroke-width="1" opacity="0.4"/>
|
|
31
|
+
|
|
32
|
+
<!-- Plone circular device with 4 dots pattern -->
|
|
33
|
+
<!-- Outer circle (centered) -->
|
|
34
|
+
<circle cx="0" cy="0" r="10" fill="none" stroke="#00d4ff" stroke-width="2.5"/>
|
|
35
|
+
|
|
36
|
+
<!-- Glitch circles (offset duplicates for digital corruption - subtle) -->
|
|
37
|
+
<circle cx="0.5" cy="0" r="10" fill="none" stroke="#ff00ff" stroke-width="0.8" opacity="0.15"/>
|
|
38
|
+
<circle cx="-0.3" cy="0.2" r="10" fill="none" stroke="#00d4ff" stroke-width="0.6" opacity="0.1"/>
|
|
39
|
+
|
|
40
|
+
<!-- Inner circle (subtle, magenta) -->
|
|
41
|
+
<circle cx="0" cy="0" r="8.5" fill="none" stroke="#ff00ff" stroke-width="1" opacity="0.3"/>
|
|
42
|
+
|
|
43
|
+
<!-- The distinctive Plone dot pattern -->
|
|
44
|
+
<!-- 2 dots on the left side (cyan, moved more to center) -->
|
|
45
|
+
<circle cx="-3" cy="-3" r="2" fill="#00d4ff" opacity="0.9"/>
|
|
46
|
+
<circle cx="-3" cy="3" r="2" fill="#00d4ff" opacity="0.9"/>
|
|
47
|
+
|
|
48
|
+
<!-- 1 dot on the right side (cyan) -->
|
|
49
|
+
<circle cx="4" cy="0" r="2" fill="#00d4ff" opacity="0.9"/>
|
|
50
|
+
|
|
51
|
+
<!-- CMS content elements positioned away from corner brackets -->
|
|
52
|
+
<!-- Document icon (top left, moved in from corner) -->
|
|
53
|
+
<rect x="-26" y="-26" width="12" height="16" fill="none" stroke="#ff00ff" stroke-width="1.5" rx="1"/>
|
|
54
|
+
<line x1="-24" y1="-22" x2="-16" y2="-22" stroke="#ff00ff" stroke-width="1" opacity="0.7"/>
|
|
55
|
+
<line x1="-24" y1="-19" x2="-16" y2="-19" stroke="#ff00ff" stroke-width="1" opacity="0.7"/>
|
|
56
|
+
<line x1="-24" y1="-16" x2="-16" y2="-16" stroke="#ff00ff" stroke-width="1" opacity="0.7"/>
|
|
57
|
+
<line x1="-24" y1="-13" x2="-18" y2="-13" stroke="#ff00ff" stroke-width="1" opacity="0.7"/>
|
|
58
|
+
|
|
59
|
+
<!-- Image icon (top right, moved in from corner) -->
|
|
60
|
+
<rect x="14" y="-26" width="12" height="16" fill="none" stroke="#00d4ff" stroke-width="1.5" rx="1"/>
|
|
61
|
+
<circle cx="18" cy="-21" r="2.5" fill="none" stroke="#00d4ff" stroke-width="1" opacity="0.7"/>
|
|
62
|
+
<path d="M 14,-12 L 18,-18 L 22,-15 L 26,-20" fill="none" stroke="#00d4ff" stroke-width="1.2" opacity="0.7"/>
|
|
63
|
+
|
|
64
|
+
<!-- File/Content icon (bottom left, moved in from corner) -->
|
|
65
|
+
<rect x="-26" y="10" width="12" height="16" fill="none" stroke="#00d4ff" stroke-width="1.5" rx="1"/>
|
|
66
|
+
<line x1="-24" y1="14" x2="-16" y2="14" stroke="#00d4ff" stroke-width="1" opacity="0.7"/>
|
|
67
|
+
<line x1="-24" y1="17" x2="-16" y2="17" stroke="#00d4ff" stroke-width="1" opacity="0.7"/>
|
|
68
|
+
<line x1="-24" y1="20" x2="-16" y2="20" stroke="#00d4ff" stroke-width="1" opacity="0.7"/>
|
|
69
|
+
<line x1="-24" y1="23" x2="-18" y2="23" stroke="#00d4ff" stroke-width="1" opacity="0.7"/>
|
|
70
|
+
|
|
71
|
+
<!-- Folder icon (bottom right, moved in from corner) -->
|
|
72
|
+
<path d="M 14,14 L 14,10 L 19,10 L 21,12 L 26,12 L 26,26 L 14,26 Z" fill="none" stroke="#ff00ff" stroke-width="1.5" opacity="0.8"/>
|
|
73
|
+
<line x1="16" y1="16" x2="24" y2="16" stroke="#ff00ff" stroke-width="1" opacity="0.5"/>
|
|
74
|
+
<line x1="16" y1="20" x2="24" y2="20" stroke="#ff00ff" stroke-width="1" opacity="0.5"/>
|
|
75
|
+
|
|
76
|
+
<circle cx="-28" cy="0" r="2" fill="#00d4ff" opacity="0.8"/>
|
|
77
|
+
<circle cx="28" cy="0" r="2" fill="#ff00ff" opacity="0.8"/>
|
|
78
|
+
</g>
|
|
79
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(50, 50)">
|
|
3
|
+
<path d="M -35,-35 L -30,-35 L -30,-30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
4
|
+
<path d="M -35,35 L -30,35 L -30,30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
5
|
+
<path d="M 35,-35 L 30,-35 L 30,-30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
6
|
+
<path d="M 35,35 L 30,35 L 30,30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
7
|
+
|
|
8
|
+
<line x1="-25" y1="-15" x2="25" y2="-15" stroke="#00d4ff" stroke-width="1" opacity="0.4"/>
|
|
9
|
+
<line x1="-25" y1="15" x2="25" y2="15" stroke="#ff00ff" stroke-width="1" opacity="0.4"/>
|
|
10
|
+
|
|
11
|
+
<!-- Reference: Document with index/table symbol -->
|
|
12
|
+
<rect x="-12" y="-16" width="24" height="32" fill="none" stroke="#00d4ff" stroke-width="2.5"/>
|
|
13
|
+
<path d="M 12,-16 L 12,-10 L 6,-10" fill="none" stroke="#ff00ff" stroke-width="2"/>
|
|
14
|
+
<path d="M 6,-10 L 12,-10 L 12,-16" fill="#ff00ff" opacity="0.3"/>
|
|
15
|
+
|
|
16
|
+
<!-- Table/grid for reference -->
|
|
17
|
+
<rect x="-8" y="-8" width="16" height="16" fill="none" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
18
|
+
<line x1="-8" y1="-2" x2="8" y2="-2" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
19
|
+
<line x1="-8" y1="4" x2="8" y2="4" stroke="#ff00ff" stroke-width="1.5" opacity="0.6"/>
|
|
20
|
+
<line x1="-2" y1="-8" x2="-2" y2="8" stroke="#00d4ff" stroke-width="1.5" opacity="0.5"/>
|
|
21
|
+
<line x1="4" y1="-8" x2="4" y2="8" stroke="#00d4ff" stroke-width="1.5" opacity="0.5"/>
|
|
22
|
+
|
|
23
|
+
<!-- Dots in cells to indicate data -->
|
|
24
|
+
<circle cx="-5" cy="-5" r="0.8" fill="#ff00ff" opacity="0.8"/>
|
|
25
|
+
<circle cx="1" cy="-5" r="0.8" fill="#ff00ff" opacity="0.8"/>
|
|
26
|
+
<circle cx="-5" cy="1" r="0.8" fill="#00d4ff" opacity="0.6"/>
|
|
27
|
+
<circle cx="6" cy="6" r="0.8" fill="#00d4ff" opacity="0.6"/>
|
|
28
|
+
|
|
29
|
+
<line x1="-12" y1="-10" x2="-12" y2="16" stroke="#ff00ff" stroke-width="3" opacity="0.4"/>
|
|
30
|
+
|
|
31
|
+
<circle cx="-28" cy="0" r="2" fill="#00d4ff" opacity="0.8"/>
|
|
32
|
+
<circle cx="28" cy="0" r="2" fill="#ff00ff" opacity="0.8"/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(50, 50)">
|
|
3
|
+
<path d="M -35,-35 L -30,-35 L -30,-30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
4
|
+
<path d="M -35,35 L -30,35 L -30,30" stroke="#00d4ff" stroke-width="2.5" fill="none"/>
|
|
5
|
+
<path d="M 35,-35 L 30,-35 L 30,-30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
6
|
+
<path d="M 35,35 L 30,35 L 30,30" stroke="#ff00ff" stroke-width="2.5" fill="none"/>
|
|
7
|
+
|
|
8
|
+
<line x1="-25" y1="-15" x2="25" y2="-15" stroke="#00d4ff" stroke-width="1" opacity="0.4"/>
|
|
9
|
+
<line x1="-25" y1="15" x2="25" y2="15" stroke="#ff00ff" stroke-width="1" opacity="0.4"/>
|
|
10
|
+
|
|
11
|
+
<!-- Tutorial: Document with play/learning symbol -->
|
|
12
|
+
<rect x="-12" y="-16" width="24" height="32" fill="none" stroke="#00d4ff" stroke-width="2.5"/>
|
|
13
|
+
<path d="M 12,-16 L 12,-10 L 6,-10" fill="none" stroke="#ff00ff" stroke-width="2"/>
|
|
14
|
+
<path d="M 6,-10 L 12,-10 L 12,-16" fill="#ff00ff" opacity="0.3"/>
|
|
15
|
+
|
|
16
|
+
<!-- Play/learning icon in center -->
|
|
17
|
+
<circle cx="0" cy="0" r="10" fill="none" stroke="#ff00ff" stroke-width="2" opacity="0.6"/>
|
|
18
|
+
<path d="M -3,-5 L -3,5 L 6,0 Z" fill="#00d4ff" opacity="0.8"/>
|
|
19
|
+
|
|
20
|
+
<!-- Progress dots at bottom -->
|
|
21
|
+
<circle cx="-4" cy="11" r="1.5" fill="#ff00ff"/>
|
|
22
|
+
<circle cx="0" cy="11" r="1.5" fill="#ff00ff" opacity="0.6"/>
|
|
23
|
+
<circle cx="4" cy="11" r="1.5" fill="#00d4ff" opacity="0.4"/>
|
|
24
|
+
|
|
25
|
+
<line x1="-12" y1="-10" x2="-12" y2="16" stroke="#ff00ff" stroke-width="3" opacity="0.4"/>
|
|
26
|
+
|
|
27
|
+
<circle cx="-28" cy="0" r="2" fill="#00d4ff" opacity="0.8"/>
|
|
28
|
+
<circle cx="28" cy="0" r="2" fill="#ff00ff" opacity="0.8"/>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// Fix logo link to always go to documentation root
|
|
2
|
+
// Works for both local (/) and GitHub Pages (/cdk8s-plone/)
|
|
3
|
+
document.addEventListener('DOMContentLoaded', function() {
|
|
4
|
+
const logoLink = document.querySelector('.sy-head-brand');
|
|
5
|
+
if (logoLink) {
|
|
6
|
+
// Get the path up to /cdk8s-plone/ (or just / for local)
|
|
7
|
+
const pathMatch = window.location.pathname.match(/^(.*?\/cdk8s-plone\/|\/)/);
|
|
8
|
+
if (pathMatch) {
|
|
9
|
+
logoLink.href = pathMatch[1];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
});
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Configuration file for the Sphinx documentation builder.
|
|
2
|
+
#
|
|
3
|
+
# This file only contains a selection of the most common options. For a full
|
|
4
|
+
# list see the documentation:
|
|
5
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
6
|
+
|
|
7
|
+
# -- Path setup --------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
# If extensions (or modules to document with autodoc) are in another directory,
|
|
10
|
+
# add these directories to sys.path here. If the directory is relative to the
|
|
11
|
+
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
12
|
+
#
|
|
13
|
+
# import os
|
|
14
|
+
# import sys
|
|
15
|
+
# sys.path.insert(0, os.path.abspath('.'))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# -- Project information -----------------------------------------------------
|
|
19
|
+
|
|
20
|
+
project = "cdk8s-plone"
|
|
21
|
+
copyright = "2024-2025, Blue Dynamics Alliance"
|
|
22
|
+
author = "Blue Dynamics Alliance Contributors"
|
|
23
|
+
|
|
24
|
+
# The full version, including alpha/beta/rc tags
|
|
25
|
+
release = "0.0.0"
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# -- General configuration ---------------------------------------------------
|
|
29
|
+
|
|
30
|
+
# Add any Sphinx extension module names here, as strings. They can be
|
|
31
|
+
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
32
|
+
# ones.
|
|
33
|
+
extensions = [
|
|
34
|
+
"myst_parser",
|
|
35
|
+
"sphinxcontrib.mermaid",
|
|
36
|
+
"sphinx_design", # For grid and card directives
|
|
37
|
+
"sphinx_copybutton", # Add copy button to code blocks
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
# MySt specific extensions
|
|
41
|
+
myst_enable_extensions = [
|
|
42
|
+
"deflist", # You will be able to utilise definition lists
|
|
43
|
+
"colon_fence", # Allow ::: fences for directives (needed for grid, cards, etc.)
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
# Treat code fences with these languages as Sphinx directives
|
|
47
|
+
myst_fence_as_directive = ["mermaid"]
|
|
48
|
+
|
|
49
|
+
# Add any paths that contain templates here, relative to this directory.
|
|
50
|
+
templates_path = ["_templates"]
|
|
51
|
+
|
|
52
|
+
# List of patterns, relative to source directory, that match files and
|
|
53
|
+
# directories to ignore when looking for source files.
|
|
54
|
+
# This pattern also affects html_static_path and html_extra_path.
|
|
55
|
+
exclude_patterns = []
|
|
56
|
+
|
|
57
|
+
# mermaid options
|
|
58
|
+
mermaid_output_format = "raw" # Use client-side rendering with mermaid.js
|
|
59
|
+
# -- Options for HTML output -------------------------------------------------
|
|
60
|
+
|
|
61
|
+
# Base URL for GitHub Pages deployment
|
|
62
|
+
# Set to "" for local development, or the full Pages URL for deployment
|
|
63
|
+
# This makes absolute paths in logo_target work correctly with path prefix
|
|
64
|
+
html_baseurl = "https://bluedynamics.github.io/cdk8s-plone"
|
|
65
|
+
|
|
66
|
+
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
67
|
+
# a list of builtin themes.
|
|
68
|
+
#
|
|
69
|
+
html_theme = "shibuya"
|
|
70
|
+
|
|
71
|
+
html_theme_options = {
|
|
72
|
+
# Logo configuration - absolute path resolves relative to html_baseurl
|
|
73
|
+
"logo_target": "/",
|
|
74
|
+
|
|
75
|
+
# Color scheme - using cyan from brand palette (#00d4ff)
|
|
76
|
+
"accent_color": "cyan",
|
|
77
|
+
|
|
78
|
+
# Color mode - force dark mode (brand is dark-first cyberpunk aesthetic)
|
|
79
|
+
"color_mode": "dark",
|
|
80
|
+
|
|
81
|
+
# Dark code blocks
|
|
82
|
+
"dark_code": True,
|
|
83
|
+
|
|
84
|
+
# Navigation
|
|
85
|
+
"nav_links": [],
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
# Logo configuration (Shibuya uses different approach)
|
|
89
|
+
html_logo = "_static/kup6s-icon-plone.svg"
|
|
90
|
+
|
|
91
|
+
# Add any paths that contain custom static files (such as style sheets) here,
|
|
92
|
+
# relative to this directory. They are copied after the builtin static files,
|
|
93
|
+
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
94
|
+
html_static_path = ["_static"]
|
|
95
|
+
|
|
96
|
+
# Custom CSS files
|
|
97
|
+
html_css_files = [
|
|
98
|
+
"brand-theme.css", # Main brand theme (includes fonts, colors, cyberpunk design, icons)
|
|
99
|
+
"custom-icons.css", # Custom icon styling for section headers
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
# Custom JavaScript files
|
|
103
|
+
html_js_files = [
|
|
104
|
+
"logo-fix.js", # Fix logo link for path prefix deployment
|
|
105
|
+
]
|