jekyll/docs/_docs/index.md

1.1 KiB

title permalink redirect_from
Quickstart /docs/ /docs/home/index.html

Jekyll is a simple, extendable, static site generator. You give it text written in your favorite markup language and it churns through layouts to create a static website. Throughout that process you can tweak how you want the site URLs to look, what data gets displayed in the layout, and more.

Instructions

  1. Install a full Ruby development environment
  2. Install Jekyll and bundler gems
gem install jekyll bundler
  1. Create a new Jekyll site at ./myblog
jekyll new myblog
  1. Change into your new directory
cd myblog
  1. Build the site and make it available on a local server
bundle exec jekyll serve
  1. Now browse to http://localhost:4000{:target="_blank"}

If you encounter any unexpected errors during the above, please refer to the troubleshooting page or the already-mentioned requirements page, as you might be missing development headers or other prerequisites.