Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Configuration

Jérémie Bertrand edited this page Jul 31, 2016 · 11 revisions

The configuration of a website is stored in the file _config.yml the contents of this file:

pretzel: 
    engine: liquid

The engine used for managing the website is liquid in this example.

Exclude

Exclude items from being included when (re)generating the site (bake and taste command)

exclude:
  - bootstrap\less\
  - .gitignore
  - .git
  - taste.bat
  - Pretzel.exe

Where the excluded file is the entire path of a file or a folder.

Ignoring a file: - example.ext would not include the root file that is named example.ext.

Ignoring a folder: - bootstrap\less\ ignores all files in the folder bootstrap\less\.

Use categories from frontmatter only

You can choose to use categories only from frontmatter and not from frontmatter and _posts folder path.

only_frontmatter_categories: true