Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A simple, ready-to-use Jekyll theme for blogging with GitHub Pages deployment.
Book is a minimal Jekyll theme for blogging, designed to be simple and ready to use, and it can be deployed to GitHub Pages with a single npm command. The theme is made by GitHub user kkninjae, and a live demo is available at http://kkninjae.github.io/book/. It is built specifically for Jekyll, the static site generator, and requires no build tools beyond Jekyll itself and npm for the deployment script.
Book is a Jekyll theme that turns a standard Jekyll repository into a clean, typography-focused blog. It takes Markdown files placed in a _posts directory as input and produces a static HTML site as output, following Jekyll's standard build process. All site-wide configuration is handled by editing key-value pairs in the _config.yml file, which controls the site title, path, favicon, avatar, Google Analytics, and Disqus integration.
baseurl, title, favicon, avatar, ga, and disqus directly in _config.yml to personalize the site without touching layout files._posts directory, named following Jekyll's YYYY-MM-DD-title.md convention, and add a front matter block with a title and date.npm run deploy script pushes the built static site to the gh-pages branch, creating the branch automatically if it doesn't already exist.ga config key to enable analytics on the generated site.disqus config key to your site's shortname.jekyll serve -w to serve the site locally with watch mode, allowing instant preview while writing posts._config.yml with your site name and details, drop in a few Markdown posts, and run npm run deploy to go live.Getting started involves four steps: clone the repository, run jekyll serve -w for local development, write Markdown posts in _posts, and customize _config.yml. To publish, install npm, then run npm run deploy, which packages the generated site and pushes it to the gh-pages branch of your repository. No additional plugins are required beyond the standard Jekyll environment.
