Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
garth/_config.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
67 lines (60 sloc)
1.64 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Site configuration | |
# 1. Files excluded from Jekyll builds | |
# 2. Installed Gems | |
# 3. Gem settings | |
# 4. Jekyll settings | |
# 5. Collections | |
# 6. Jekyll collections settings | |
# 7. Site settings | |
# 1. Files excluded from Jekyll builds | |
exclude: | |
- README.md | |
- CODE_OF_CONDUCT.md | |
- CONTRIBUTING.md | |
- screenshot.png | |
- LICENSE | |
- CNAME | |
- Gemfile | |
- Gemfile.lock | |
- garth-jekyll-theme.gemspec | |
# 2. Installed Gems | |
plugins: | |
- jekyll-paginate | |
# 3. Gem settings | |
paginate: 2 # jekyll-paginate > items per page | |
paginate_path: page:num # jekyll-paginate > blog page | |
# 4. Jekyll settings | |
sass: | |
style: compressed # Style compression | |
permalink: pretty # Permalink style (/YYYY/MM/DD/page-name/) | |
excerpt_separator: <!-- more --> # Marks end of excerpt in posts | |
timezone: Europe/London # Timezone for blog posts and alike | |
# 5. Collections | |
collections: | |
posts: | |
title: Blog # Needed for Siteleaf | |
output: true | |
description: "This is merely a demo, find out more [about Garth](about)" # The post list page content | |
# 6. Jekyll collections settings | |
defaults: | |
- | |
scope: | |
path: "" | |
type: pages | |
values: | |
layout: page # Default layout | |
- | |
scope: | |
path: "" | |
type: posts | |
values: | |
layout: post # Default layout | |
# 7. Site settings | |
encoding: utf-8 # Make sure the encoding is right | |
title: "Garth" # Site name or title | |
logo: "/assets/logo.svg" # Site logo | |
# favicon: "/favicon.ico" # Uncomment to add custom favicon, or leave as is to use site logo | |
description: "A really basic theme for Jekyll, using the official Jekyll theme implementation" # Site description and default description | |
url: "https://garth.darn.es" # Site url | |
baseurl: "" | |
lang: en-GB |