2017-01-03 19:41:34 -05:00
|
|
|
# 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
|
2018-01-01 13:36:00 -05:00
|
|
|
- CODE_OF_CONDUCT.md
|
|
|
|
- CONTRIBUTING.md
|
2017-01-03 19:41:34 -05:00
|
|
|
- screenshot.png
|
|
|
|
- LICENSE
|
|
|
|
- CNAME
|
|
|
|
- Gemfile
|
|
|
|
- Gemfile.lock
|
|
|
|
- garth-jekyll-theme.gemspec
|
|
|
|
|
|
|
|
# 2. Installed Gems
|
2018-01-01 13:30:28 -05:00
|
|
|
plugins:
|
2017-01-03 19:41:34 -05:00
|
|
|
- jekyll-paginate
|
|
|
|
|
|
|
|
# 3. Gem settings
|
|
|
|
paginate: 2 # jekyll-paginate > items per page
|
2017-01-04 03:54:39 -05:00
|
|
|
paginate_path: page:num # jekyll-paginate > blog page
|
2017-01-03 19:41:34 -05:00
|
|
|
|
|
|
|
# 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:
|
2017-01-04 03:54:39 -05:00
|
|
|
title: Welcome # Needed for Siteleaf
|
2017-01-03 19:41:34 -05:00
|
|
|
output: true
|
2017-01-04 17:58:19 -05:00
|
|
|
description: "This is just a demo, find out more [about Garth](/about/)" # The post list page content
|
2017-01-03 19:41:34 -05:00
|
|
|
|
|
|
|
# 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
|
2017-01-04 03:54:39 -05:00
|
|
|
title: "Garth" # Site name or title
|
|
|
|
logo: "https://www.gravatar.com/avatar/6c0377abcf4da91cdd35dea4554b2a4c?s=500" # Site logo
|
2017-01-04 17:45:00 -05:00
|
|
|
description: "A stupidly simple theme for Jekyll, using the official Jekyll theme implementation" # Site description and default description
|
2017-01-04 03:54:39 -05:00
|
|
|
url: "https://garth.darn.es" # Site url
|