A Hugo-based blog deployed to GitHub Pages.
To run the site locally, you need to have Hugo installed.
# Install Hugo (extended version)
# See https://gohugo.io/installation/
# Run the development server
hugo server -D
# Build the site
hugoThis site is automatically deployed to GitHub Pages using GitHub Actions whenever changes are pushed to the main branch.
The workflow:
- Builds the Hugo site using Hugo version 0.152.2
- Uploads the built site as an artifact
- Deploys to GitHub Pages
To enable GitHub Pages for this repository:
- Go to repository Settings > Pages
- Set Source to "GitHub Actions"
- The site will be available at: https://jandeddobbeleer.github.io/blog.itdepends.be/
content/- Blog posts and contentlayouts/- Hugo layout templatesstatic/- Static assets (CSS, JS, images)config.toml- Hugo configuration.github/workflows/hugo.yml- GitHub Actions workflow for deployment