Sammlung
This commit is contained in:
16
Sammlung/p1/test1/content/index.html
Normal file
16
Sammlung/p1/test1/content/index.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>
|
||||
Titel
|
||||
</title>
|
||||
<meta charset= "UTF-8"/>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>
|
||||
<a href="/module">Modul</a>
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
14
Sammlung/p1/test1/content/main.js
Normal file
14
Sammlung/p1/test1/content/main.js
Normal file
@ -0,0 +1,14 @@
|
||||
function change_view(idContainer){
|
||||
var element_o = document.getElementById(idContainer);
|
||||
|
||||
|
||||
if (element_o.style.display != "none"){
|
||||
|
||||
element_o.style.display = "none";
|
||||
}
|
||||
else{
|
||||
|
||||
element_o.style.display = "block";
|
||||
}
|
||||
|
||||
}
|
18
Sammlung/p1/test1/content/module.html
Normal file
18
Sammlung/p1/test1/content/module.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>
|
||||
Titel
|
||||
</title>
|
||||
<meta charset= "UTF-8"/>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
Inhalt
|
||||
</p>
|
||||
<p>
|
||||
<a href="/module">Modul</a>
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user