Skip to main content
Settings
Search
Appearance
Theme Mode
About
Jekyll v3.10.0
Environment Production
Last Build
2026-05-24 21:20 UTC
Current Environment Production
Build Time May 24, 21:20
Jekyll v3.10.0
Build env (JEKYLL_ENV) production
Page Location
Page Info
Layout default
Collection about
Path _about/index.md
URL /about/
Date 2024-05-31
Theme Skin
SVG Backgrounds
Layer Opacity
0.6
0.04
0.08

“Jekyll and Bootstrap 5 theme for perfectionists. Step-by-step instructions to build your blog, portfolio, and documentation site with no mistakes, unless you’re a n00b.”

A Docker-first Jekyll theme with Bootstrap 5, an AI-powered installer, and automated semantic releases — built so your first docker-compose up just works, on any machine.

What is Zer0-Mistakes?

Zer0-Mistakes is an opinionated Jekyll theme — and accompanying RubyGem (jekyll-theme-zer0) — for developers who want a modern, container-friendly, GitHub Pages–compatible publishing platform that just works on the first try. The name reflects the guiding principle: every default, script, and workflow in this project exists to keep new users from making the kinds of small mistakes that derail a Jekyll setup.

It is built around four pillars:

  • 🐳 Docker-first developmentdocker-compose up is the only command you need to start hacking, regardless of OS or Ruby version.
  • 🤖 AI-powered installation — a self-healing installer (install.sh) that detects and recovers from common environment issues automatically.
  • 🎨 Bootstrap 5 + remote-theme support — modern responsive UI that works on GitHub Pages without any custom build step.
  • 🚀 Automated semantic releases — conventional-commit analysis, changelog generation, and gem publishing in a single command.

Quick Facts

This world was created by Amr Abdel-Motaleb and maintained by:

Name Profile
Amr https://github.com/bamr87
Vacant /github.com

And, most importantly, Powered By:

Name Link
Ruby https://www.ruby-lang.org/
Jekyll https://jekyllrb.com/
Bootstrap https://getbootstrap.com/
jQuery https://jquery.com/
MathJax https://www.mathjax.org/
GitHub Pages https://pages.github.com/
Docker https://www.docker.com/

Architecture at a Glance

The theme follows a layered, modular architecture. Production sites consume it as a remote theme on GitHub Pages, while local development uses the same files mounted into a Jekyll container.

flowchart LR
    A[Author writes<br/>Markdown + front matter] --> B{Environment?}
    B -- Local dev --> C[Docker Compose<br/>jekyll serve]
    B -- Production --> D[GitHub Pages<br/>build]
    C --> E[_layouts + _includes<br/>+ _sass + assets]
    D --> F[remote_theme:<br/>bamr87/zer0-mistakes]
    F --> E
    E --> G[Static HTML site]
    G --> H[(Reader's browser)]
    H -. consent .-> I[PostHog<br/>analytics]

The dual configuration system (_config.yml for production, _config_dev.yml for local overrides) is what lets the same source tree serve both modes without edits.

Prerequisites

To run this site — or any site built on the jekyll-theme-zer0 gem — locally, you need one of the following toolchains:

Recommended (Docker-first):

  • Docker Desktop 4.0+ (or Docker Engine + Docker Compose v2)
  • Git 2.30+

Alternative (native Ruby):

  • Ruby 3.0+ (3.3 recommended; matches the gem’s CI matrix)
  • Bundler 2.x (gem install bundler)
  • Git 2.30+

No prior Jekyll knowledge is required — the installer and Docker Compose file handle dependency resolution for you.

Quick Start

The fastest way to spin up a new site using this theme:

# 1. AI-powered one-line install (creates a new site in ./my-site)
curl -fsSL https://raw.githubusercontent.com/bamr87/zer0-mistakes/main/install.sh | bash -s my-site

# 2. Start the development environment
cd my-site
docker-compose up

# 3. Open http://localhost:4000 in your browser

If you prefer to add the theme to an existing Jekyll site, drop these lines into your Gemfile and _config.yml:

# Gemfile
gem "jekyll-theme-zer0"
# _config.yml — for local builds
theme: jekyll-theme-zer0

# _config.yml — for GitHub Pages
remote_theme: bamr87/zer0-mistakes

Then run bundle install && bundle exec jekyll serve.

Contact Information

If you have any questions, comments, or suggestions, please feel free to reach out to us at:

FAQ

Do I need to know Ruby to use this theme? No. If you use the Docker-first workflow or consume the theme as a remote theme on GitHub Pages, Ruby is fully abstracted away. You only need it if you want to contribute to the theme itself.

Is this compatible with GitHub Pages? Yes. The production _config.yml uses remote_theme: "bamr87/zer0-mistakes", which is on the GitHub Pages allowlist. No custom Actions workflow is required for a basic deploy.

Why “zer0-mistakes”? The theme is targeted at the n00b level (see level in _config.yml) and every default is chosen to prevent the most common Jekyll-onboarding mistakes: wrong Ruby version, broken native extensions, platform-specific Bundler issues, and Liquid template footguns.

Does the site track me? Analytics (PostHog) only load in production and only after the visitor accepts the cookie consent banner. See _includes/analytics/posthog.html and _includes/components/cookie-consent.html for the full implementation.

Troubleshooting

Symptom Likely cause Fix
docker-compose up fails on Apple Silicon with platform errors Container image arch mismatch The bundled docker-compose.yml already pins platform: linux/amd64 — make sure you haven’t removed it.
bundle install fails with native-extension errors Missing dev headers / wrong Ruby Use the Docker workflow, or ensure you’re on Ruby 3.0+ with build tools installed.
Site builds but theme styles are missing on GitHub Pages remote_theme not enabled Confirm remote_theme: bamr87/zer0-mistakes is set in _config.yml and that the jekyll-remote-theme plugin is in your Gemfile.
Pages 404 after deploy baseurl mismatch If your repo is not a <user>.github.io repo, set baseurl: "/<repo-name>" in _config.yml.

For more, see the project README and the self-healing installer documentation.

Next Steps

Now that you know what Zer0-Mistakes is, here’s where to go next:

Ready to ship your own site?

Spin up a new Zer0-Mistakes site in under a minute with the one-line installer — no Ruby setup required.