32 lines
888 B
Markdown
32 lines
888 B
Markdown
# Homelab Blog
|
|
|
|
Moderne Hugo-Website im Terminal-Design für Homelab-Dokumentation, Services und Konfigurationen.
|
|
|
|
## Struktur
|
|
|
|
- `content/posts/` — Blogartikel
|
|
- `content/services/` — Service-Dokumentationen
|
|
- `content/configs/` — Konfigurationssnippets
|
|
- `content/projects/` — Infrastruktur- und Automatisierungsprojekte
|
|
- `layouts/` — eigene Templates
|
|
- `static/css/styles.css` — modernes Terminal-Theme
|
|
|
|
## Lokales Testen
|
|
|
|
1. Hugo installieren: https://gohugo.io/getting-started/installing/
|
|
2. In das Projektverzeichnis wechseln:
|
|
```bash
|
|
cd c:\Users\Lucas Hahmann\Documents\Code\homelab-blog
|
|
```
|
|
3. Lokalen Server starten:
|
|
```bash
|
|
hugo server -D
|
|
```
|
|
4. Im Browser öffnen: `http://localhost:1313`
|
|
|
|
## Anpassen
|
|
|
|
- `config.toml` für Titel, Menü und Farben
|
|
- `static/css/styles.css` für das Styling
|
|
- `content/*` für Inhalte und neue Seiten
|