Modul 5: In 10 Minuten liveModule 5: Live in 10 minutes
Modul 5 von 6 · ⏱ ca. 20 MinutenModule 5 of 6 · ⏱ ~20 minutes
Deine eigene Website mit GitHub Pages — kostenlos, ohne Setup, ohne Hosting.Your own website with GitHub Pages — free, no setup, no hosting.
- GitHub Pages für dein Repository aktivieren und die Live-URL aufrufenActivate GitHub Pages for your repository and visit the live URL
- Eine Seite mit mindestens 3 Markdown-Elementen (Überschrift, Liste, Link) veröffentlichenPublish a page with at least 3 Markdown elements (heading, list, link)
- Die URL deiner Seite teilenShare your page's URL
Was ist GitHub Pages?What is GitHub Pages?
GitHub kann jedes Repository automatisch als Website veröffentlichen. Du schreibst Markdown-Dateien, GitHub macht daraus eine schöne Seite. Kostenlos. Für immer. Perfekt für Portfolios, Projekt-Dokumentation, interne Handbücher oder Forschungs-Landingpages.GitHub can automatically publish any repository as a website. You write Markdown files, GitHub turns them into a beautiful page. Free. Forever. Perfect for portfolios, project documentation, internal handbooks, or research landing pages.
README.md
- „+" → „New repository""+" → "New repository"
- Name:
meine-seiteName:my-site - ✅ Public (Pages funktioniert im Free Plan nur bei öffentlichen Repos)✅ Public (Pages only works with public repos on the free plan)
- ✅ Add a README file✅ Add a README file
- „Create repository""Create repository"
- „Add file" → „Create new file""Add file" → "Create new file"
- Name:
index.mdName:index.md - Schreibe Markdown — hier ein Starter:Write Markdown — here's a starter:
- Committe:
Startseite erstelltCommit:Created homepage
- Gehe zu Settings (im Repo, nicht Account-Settings)Go to Settings (in the repo, not account settings)
- Links: „Pages"Left sidebar: "Pages"
- Source: „Deploy from a branch"Source: "Deploy from a branch"
- Branch: main, Folder: / (root)Branch: main, Folder: / (root)
- Klicke SaveClick Save
dein-username.github.io/meine-seite✅ The URL appears above: your-username.github.io/my-site- Erstelle eine Datei
_config.ymlim RepoCreate a file_config.ymlin the repo - Inhalt:
remote_theme: pages-themes/cayman@v0.2.0Content:remote_theme: pages-themes/cayman@v0.2.0 - Committe — nach 1-2 Min sieht deine Seite professionell ausCommit — after 1-2 min your site looks professional
minimal, slate, dinky, tactile. Einfach den Namen austauschen.💡 Other themes: minimal, slate, dinky, tactile. Just swap the name.- Öffne
https://dein-username.github.io/meine-seiteOpenhttps://your-username.github.io/my-site - Das ist deine Website. Live. Kostenlos. Für immer.That's your website. Live. Free. Forever.
- Teile den Link — per LinkedIn, E-Mail, Slack, wo auch immerShare the link — via LinkedIn, email, Slack, wherever
🎉 Modul 5 geschafft!Module 5 complete!
Du hast gerade eine Website veröffentlicht — mit Markdown und GitHub Pages. Keine Programmierkenntnisse nötig.You just published a website — with Markdown and GitHub Pages. No programming skills needed.
- Deine Seite ist unter
https://DEIN-USERNAME.github.io/REPO-NAME/erreichbarYour page is live athttps://YOUR-USERNAME.github.io/REPO-NAME/ - Die Seite zeigt formatierten Inhalt (nicht nur Plaintext)The page shows formatted content (not just plaintext)
👉 Letztes Modul: In Modul 6 erstellst du deinen persönlichen GitHub-Gameplan — wo passt GitHub in deinen Alltag, und wie überzeugst du dein Team? 👉 Final module: In Module 6 you'll create your personal GitHub gameplan — where does GitHub fit in your day-to-day, and how do you convince your team?
📖 Markdown Cheatsheet📖 Markdown Cheatsheet
# Überschrift | Große ÜberschriftLarge heading |
## Unter | UnterüberschriftSubheading |
**fett** | fett |
*kursiv* | kursiv |
- Punkt | AufzählungBullet list |
[Text](URL) | Link |
 | Bild einbindenEmbed image |