This commit is contained in:
darthsandmann
2016-10-16 21:53:15 +02:00
parent 0d10f8b9dc
commit c9f3117da1
412 changed files with 137942 additions and 0 deletions

View 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>

View 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";
}
}

View 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>