Source code for my technical homepage at mutschler.dev.
- Static Site Generator: Hugo (Extended version)
- Theme: Wowchemy (formerly Academic Theme)
- Hosting: GitHub Pages
- CI/CD: GitHub Actions (automatic deployment on push to main branch)
config/: Hugo configuration filescontent/: All content for the website (blog posts, pages, etc.)linux/: Linux-related guides and tutorialsapple/: macOS-related guidesstuff/: Miscellaneous content
assets/media/: Images and media files.github/workflows/hugo.yml: GitHub Actions workflow for automated deployment
# Start local development server
hugo server
# Build the site
hugo
The site is automatically deployed to GitHub Pages via GitHub Actions whenever changes are pushed to the main branch. See .github/workflows/hugo.yml for the deployment configuration.