This is a simple Jekyll blog project scaffolded for local development.
podman build --no-cache -t localhost/my-jekyll-blog . && podman run --rm -p 4000:4000 localhost/my-jekyll-blog- Install Ruby and Bundler if not already installed.
- Run
bundle installto install dependencies. - Start the server with
bundle exec jekyll serve.
_config.yml: Jekyll configurationGemfile: Ruby dependencies_posts/: Blog posts_layouts/: HTML layouts_includes/: Reusable HTML snippetsassets/: Static files (CSS, JS, images)index.md: Homepage
See Jekyll documentation for more details.