Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
zedflow
Knight-2025
Commits
b761ed17
Commit
b761ed17
authored
Jun 03, 2025
by
Traboulsi
Browse files
Update public/index.html
parent
afbf4b33
Pipeline
#11234
passed with stage
in 9 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
public/index.html
View file @
b761ed17
...
...
@@ -419,10 +419,15 @@ body {
<!-- Section Title -->
<div
class=
"container section-title"
data-aos=
"fade-up"
>
<h2>
Arbeitspakete
</h2>
<p>
S
ie
ben
Arbeitspakete bilden das Fundament unseres Forschungsvorhabens.
Sie sind interdisziplinär angelegt und eng miteinander verzahnt.
</p>
<p>
D
ie Arbeitspakete bilden das Fundament unseres Forschungsvorhabens.
</p>
<!--<p>Check Our Wok Packages<br></p>-->
</div>
<!-- End Section Title -->
<div
class=
"container"
>
<!-- themen zu addieren juni 25-->
<!-- Themenbuttons -->
<div
class=
"topic-buttons"
>
...
...
@@ -466,8 +471,6 @@ body {
</div>
<!-- end themen -->
<div
class=
"container"
>
<div
class=
"row gy-4"
>
<!-- AP1 -->
...
...
@@ -1505,6 +1508,34 @@ Implementations, and Perspectives
});
</script>
<!-- Script für themen -->
<script>
function
toggleTopic
(
topicId
,
btn
)
{
// Alle anderen Texte ausblenden
document
.
querySelectorAll
(
'
.topic-details
'
).
forEach
(
el
=>
el
.
style
.
display
=
'
none
'
);
// Aktuellen Text anzeigen
const
topicEl
=
document
.
getElementById
(
'
topic-
'
+
topicId
);
topicEl
.
style
.
display
=
'
block
'
;
// Button-Status aktualisieren
document
.
querySelectorAll
(
'
.topic-buttons button
'
).
forEach
(
b
=>
b
.
classList
.
remove
(
'
active
'
));
btn
.
classList
.
add
(
'
active
'
);
}
function
resetTopic
()
{
document
.
querySelectorAll
(
'
.topic-details
'
).
forEach
(
el
=>
el
.
style
.
display
=
'
none
'
);
document
.
querySelectorAll
(
'
.topic-buttons button
'
).
forEach
(
b
=>
b
.
classList
.
remove
(
'
active
'
));
}
function
toggleDetails
(
id
)
{
document
.
querySelectorAll
(
'
.details
'
).
forEach
(
el
=>
{
el
.
style
.
display
=
(
el
.
id
===
id
&&
el
.
style
.
display
!==
'
block
'
)
?
'
block
'
:
'
none
'
;
});
}
</script>
</body>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment