Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Minimal is a Jekyll theme for GitHub Pages
Minimal is a free Jekyll theme for GitHub Pages, created by the GitHub Pages team (pages-themes organization), that builds a simple single-column personal or project website from a remote_theme configuration line.
Minimal is a Jekyll theme distributed as a Ruby gem (jekyll-theme-minimal) and as a remote theme for GitHub Pages, currently at version v0.2.0. It takes your Markdown content and _config.yml settings as input and produces a static HTML/CSS site hosted on GitHub Pages, with a profile header and a content area. The theme is maintained by the pages-themes GitHub organization and is the starting point for many GitHub-hosted personal pages.
Minimal stands out for its short installation path: adding remote_theme: pages-themes/[email protected] and the jekyll-remote-theme plugin to _config.yml is the whole setup. It also provides an explicit override system for nearly every part of the site, which keeps the baseline simple while allowing deeper customization.
_config.yml and a plugin; GitHub Pages builds the theme automatically, so no local Jekyll setup is required for hosting.title and description are read from _config.yml and injected into the page; optional show_downloads and google_analytics toggle extra features.show_downloads: true to render links to the repository’s ZIP archive and source on GitHub, useful for project releases.google_analytics config field accepts a tracking ID; you can replace the snippet by creating _includes/head-custom-google-analytics.html./assets/css/style.scss to import the theme’s Sass and add custom rules, or modify Sass variables before the import._layouts/default.html, with _includes partials) can be copied into your site and edited, giving full HTML control.github: map in _config.yml lets you replace any GitHub-generated URL (such as zip download links) that the theme uses.script/cibuild) to verify a site builds successfully.GitHub Pages users who want a no-fuss personal or project homepage will find Minimal useful: newcomers can publish by editing only _config.yml, while developers can extend the layout and Sass for custom projects. The README’s philosophy states the theme should meet most users’ needs out of the box and let them opt into complexity, so it fits anyone who prefers a clean baseline over a feature-heavy theme. It is equally suitable for students, open-source maintainers, and hobbyists who need a quick online presence.
show_downloads to add buttons that link to your project’s source and release ZIP on GitHub, which is typical for repos that need a landing page._posts folder; the default layout applies consistent typography, and the same _config.yml settings control the whole site.To use the theme, add remote_theme: pages-themes/[email protected] to _config.yml and include jekyll-remote-theme in your plugins, then push to a GitHub Pages branch. For local development, clone the repository, run script/bootstrap to install dependencies, and start a preview with bundle exec jekyll serve. The theme reads standard Jekyll variables and optional github: overrides when building each page.
Yes, Minimal is an open-source Jekyll theme hosted publicly on GitHub, and GitHub Pages serves sites using it without any payment. You only need a GitHub account to publish.
Add remote_theme: pages-themes/[email protected] to your _config.yml and add jekyll-remote-theme to your plugins list. Then commit the file and push to your GitHub Pages branch; the site is built automatically.
Yes. Create /assets/css/style.scss, import the theme’s Sass using Jekyll’s theme import, and either set new Sass variables before that import or add custom CSS after it. The README walks through this exact procedure.
Yes, set google_analytics in _config.yml to your tracking ID. If you want to use the newest analytics snippet, provide a _includes/head-custom-google-analytics.html file in your site and place the code there.
For small changes, add files to your site’s _includes folder. For larger modifications, copy _layouts/default.html from the theme’s repository into your own _layouts folder, then edit it; the README includes a step-by-step guide.
