This repository contains Craig Booth's personal website, hosted at craigmbooth.github.io. It's a Jekyll-based static site using the Minimal Mistakes theme.
- Static Site Generator: Jekyll
- Theme: Minimal Mistakes
- Hosting: GitHub Pages
- CI/CD: Custom CircleCI setup via
ci.sh - Domain: Custom domain (craigmbooth.com) via CNAME file
- _posts/: Blog posts organized by date (2013-2025)
- _data/: YAML configuration files (navigation, projects, publications)
- _includes/: Reusable HTML components
- _layouts/: Page layout templates
- _sass/: SCSS styling files
- assets/: Images, CSS, and JavaScript resources
- projects/: Individual project pages and resources
- pages/: Special standalone pages
- _config.yml: Main Jekyll configuration
- Gemfile: Ruby gem dependencies
- ci.sh: Continuous integration script
- CNAME: Custom domain configuration
bundle exec jekyll serveCreate a new file in _posts/ with the format: YYYY-MM-DD-title.md
Include the front matter:
---
title: "Post Title"
categories:
- Category
tags:
- tag1
- tag2
header:
image: /assets/images/path-to-header-image.jpg
---- Add project details to
_data/projects.yml - Create a new directory in
projects/if needed - Add project assets to
assets/images/projects/
Store images in the appropriate directory under assets/images/
./ci.shCurrent branch: meditation - Adding new meditation-related content
The site automatically deploys from the master branch via GitHub Pages.
To deploy changes:
- Create a PR from your feature branch to
master - Merge the PR after CI passes
- GitHub Pages will build and deploy the site
find _posts -type f | sortgrep -r "search term" --include="*.md" .find assets/images -type fcat _config.yml