jekyll-template

jekyll-template

A template code base project for jekyll sites

Jekyll basic template

Installation

Run locally

If you have a full Jekyll environment installed, you can skip to the step 3:

  1. Install a full Ruby development environment

  2. Install Jekyll and Bundler

gem install jekyll bundler
  1. Install dependencies from Gemfile
bundle install
  1. Replace the sample data with your data in the _config.yml file.

  2. Build the site and make it available on a local server

bundle exec jekyll serve

You should see something like:

Configuration file: /PROJECT_NAME/_config.yml
            Source: .
       Destination: ./_site
 Incremental build: disabled. Enable with --incremental
      Generating...
                    done in 2.633 seconds.
 Auto-regeneration: enabled for '.'
    Server address: http://127.0.0.1:4000
  Server running... press ctrl-c to stop.
  1. Now browse to http://localhost:4000.

More about Jekyll

See the Jekyll documentation for more.