Personal Jekyll blog hosted on GitHub Pages. Uses the minima theme with custom Bootstrap-based CSS/JS overrides.
Gemfile.lock)clean-blog CSS/JS# Standard Jekyll serve
bundle exec jekyll serve
# Build drafts
bundle exec jekyll build --drafts
Or via Docker (avoids local Ruby setup):
docker-compose up jekyll-dev # runs on http://localhost:4000 with --drafts
# Install deps if needed
npm install
# Build CSS (Less -> CSS), minify JS, and add license banner
grunt default
Task: uglifies js/clean-blog.js, compiles less/clean-blog.less into css/clean-blog.css + .min.css, and applies the license banner.
_config.yml is the root of truth. timezone: Europe/London is set.YYYY-MM-DD-title.md (also .html is allowed). Frontmatter must include header-img: if using a custom banner..html with frontmatter): index.html, about.html, contact.html, plus the generated 404.html._layouts/: default -> page (no wrapper header) / post (header banner + previous/next pager)._includes/: shared head, nav, footer, analytics, and a reusable youtube.html include._site and .jekyll-cache are in .gitignore; do not commit build artifacts.permalink: /:title (set globally in _config.yml)Baran Buluttekin (set via defaults in _config.yml)formspree.io/bbuluttekin@gmail.com (configured in _config.yml)page.header-img overrides site.header-img for page/post bannersThere are no automated tests. Verify changes by running jekyll serve (or docker-compose) and inspecting at http://localhost:4000.