<!DOCTYPE html> <html lang="de"> <head>
<meta charset="UTF-8">
<title>Wiki – Startseite</title>
<style>
:root {
--bg: #1e1e2e;
--surface: #313244;
--text: #cdd6f4;
--accent: #fab387;
--border: #45475a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background-color: var(--bg);
color: var(--text);
min-height: 100vh;
padding: 32px;
}
h1 {
text-align: center;
font-size: 2rem;
margin-bottom: 28px;
color: var(--accent);
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
max-width: 960px;
margin: 0 auto;
}
@media (max-width: 720px) {
.grid { grid-template-columns: 1fr; }
}
.tile {
background-color: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
padding: 24px;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.tile h2 {
color: var(--accent);
font-size: 1.3rem;
margin-bottom: 8px;
}
.tile p {
font-size: 0.95em;
line-height: 1.6;
}
ul { padding-left: 20px; }
li { margin-top: 4px; }
</style>
</head> <body>
Wiki – Startseite
👨👩👧👦 Hilfe für Papa
Einfache Anleitungen für Computer und Handy:
- Wie mache ich ein Update?
- Wie bediene ich ein Programm am PC?
- Wie installiere ich eine App auf dem Handy?
- Wie bediene ich ein Smartphone?
🔧 Gelöste Probleme
Eine Sammlung von Fehlern und ihren Lösungen — gut zum Nachschlagen für mich und zum Erklären für andere.
🏃♂️ Wettkämpfe
Unsere offiziellen Wettkampfergebnisse und Laufzeiten — von Friedemann und Flavius, Saison für Saison.
🖥️ Server & Infrastruktur
- Storage Box: rclone, Sub-Accounts, Snapshots
- Entertainment: Jellyfin, Immich, Grafana, NPM
- lets-lounge: Gameserver, JDownloader
- Server WG 49: Home Assistant (Klima), AdGuard Home (DNS)
- Desktop: openSUSE Tumbleweed, Niri
🗣️ Erklärt für Freunde
Einfache Erklärungen von technischen Themen, die ich öfter erklären muss.
</body> </html>