added quartz wiki

This commit is contained in:
2025-11-29 03:01:04 +01:00
parent 989253c72f
commit 1063619fef
25 changed files with 1351 additions and 149 deletions

12
quartz-setup/public/Home.md Executable file
View File

@@ -0,0 +1,12 @@
# Wiki Home
Willkommen im doing-it Wiki!
Dieses Wiki enthält nützliche Informationen rund um IT-Weiterbildung, Schulungen und mehr.
## Übersicht
- [[IT-Grundlagen]]
- [[Schulungsmethoden]]
- [[Ressourcen]]

View File

@@ -0,0 +1,23 @@
# IT-Grundlagen
## Einführung
Hier finden Sie grundlegende Informationen zu IT-Konzepten und Technologien.
## Themenbereiche
### Netzwerke
- Grundlagen der Netzwerkarchitektur
- TCP/IP Protokolle
- Firewall-Konfiguration
### Betriebssysteme
- Linux
- Windows Server
- Virtualisierung
## Weiterführende Links
- [[Home]]
- [[Ressourcen]]

View File

@@ -0,0 +1,24 @@
# Ressourcen
## Lernmaterialien
### Bücher
- Empfohlene Fachliteratur
- Online-Ressourcen
### Tools
- Software für IT-Schulungen
- Virtualisierungstools
- Entwicklungsumgebungen
### Community
- Foren und Diskussionsgruppen
- Online-Kurse
- Zertifizierungen
## Siehe auch
- [[IT-Grundlagen]]
- [[Schulungsmethoden]]
- [[Home]]

View File

@@ -0,0 +1,22 @@
# Schulungsmethoden
## Moderne Ansätze der IT-Schulung
### Praxisorientierte Schulungen
- Hands-on Workshops
- Real-world Szenarien
- Projektbasierter Unterricht
### Blended Learning
- Online-Materialien
- Präsenzveranstaltungen
- Selbstlernphasen
## Vorteile
1. Bessere Wissensretention
2. Praktische Anwendbarkeit
3. Flexibilität für Teilnehmer
[[Home]]

79
quartz-setup/public/index.html Executable file
View File

@@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>doing-it Wiki</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
background: #161618;
color: #ebebec;
line-height: 1.6;
padding: 40px 20px;
}
.container {
max-width: 900px;
margin: 0 auto;
}
h1 {
font-size: 48px;
font-weight: 600;
margin-bottom: 20px;
color: #ebebec;
}
h2 {
font-size: 32px;
font-weight: 600;
margin: 40px 0 20px;
color: #ebebec;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 15px 0;
}
a {
color: #ff3b30;
text-decoration: none;
font-size: 18px;
transition: color 0.3s;
display: inline-block;
}
a:hover {
color: #ff453a;
}
.intro {
font-size: 20px;
color: #d4d4d4;
margin-bottom: 40px;
}
.content-preview {
background: #1c1c1e;
border-radius: 8px;
padding: 20px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>doing-it Wiki</h1>
<p class="intro">Willkommen im doing-it Wiki! Hier finden Sie nützliche Informationen rund um IT-Weiterbildung und Schulungen.</p>
<h2>Inhalte</h2>
<ul id="content-list">
<li><a href="/Home.md">Home</a></li>
<li><a href="/IT-Grundlagen.md">IT-Grundlagen</a></li>
<li><a href="/Ressourcen.md">Ressourcen</a></li>
<li><a href="/Schulungsmethoden.md">Schulungsmethoden</a></li>
</ul>
</div>
</body>
</html>