Layout settings and more in _config.yml

All of the rlcj’s configurations has to be set in _config.yml file. Read on for explanation of all of the features that you can toggle, including configuring the layout.

I’ve split rlcj’s _config.yml into two parts. First part should be configured by you, second contains important Jekyll & build settings and you should leave it alone, unless you know what you are doing.

Let’s go through each line in the first, configurable part:

# Base blog settings
blog:
  title                      : rlcj
  description                : >
                               this should contain a proper description
# Layout configuration
  logo_path                  : "assets/images/logo.svg" # path to logo file

# Author info
author:
  fullname                  : Your Name
  rss                       : true # generate RSS feed and show it's icon in header
  mail                      : your@email.com # change to your e-mail address
  twitter                   : twitter-user-name
  github                    : github-user-name
  youtube                   : youtube-user-name
  linkedin                  : linkedin-user-name
  photo                     : "uploads/me2.png"
  photo2x                   : "uploads/me.png"

baseurl                     : "/rlcj/" # the subpath of your site, e.g. /blog/, set to '' in case of hosting on GitHub pages
                                       # i.e. `http://<username>.github.io`
url                         : "" # the base hostname & protocol for your site

Base blog settings

Layout settings

Author info