jekyll-theme-isabelline/_config.yaml

146 lines
3.0 KiB
YAML
Raw Normal View History

2019-07-22 02:16:23 +00:00
# title of this site
2019-07-23 03:17:30 +00:00
# TODO:
title: _config.yaml title goes here
2019-07-22 02:16:23 +00:00
# subtitle
# TODO:
subtitle: _config.yaml subtitle goes here
2019-07-22 02:16:23 +00:00
# label for the home menu
2020-05-31 20:25:50 +00:00
nav:
home: Home
2019-07-22 02:16:23 +00:00
# site description
2019-07-23 03:17:30 +00:00
# TODO:
description: _config.yaml description goes here
2019-07-22 02:16:23 +00:00
# used on the home page's title tag
2019-07-23 03:17:30 +00:00
# TODO:
tagline: _config.yaml tagline goes here
2019-07-22 02:16:23 +00:00
2019-07-23 03:17:30 +00:00
# if specified url to this website will be computed as
# https://blog.example.com/valueofbaseurl/
# NOTE: leading forward slash is mandatory
2020-09-01 01:03:33 +00:00
baseurl: "/isabelline"
2019-07-23 03:17:30 +00:00
url: "https://blog.example.com"
2019-07-22 02:16:23 +00:00
# used in footer
2019-07-23 03:17:30 +00:00
# TODO
2019-07-22 02:16:23 +00:00
copyright_owner:
full_name: _config.yaml copyright_owner.full_name
short_name: _config.yaml copyright_owner.short_name
email: _config.yaml copyright_owner.email
2019-07-22 02:16:23 +00:00
# default author's name
2019-07-23 03:17:30 +00:00
# used in posts, pages and blogs
# TODO
2019-07-22 02:16:23 +00:00
author:
full_name: _config.yaml author.full_name
short_name: _config.yaml author.short_name
email: _config.yaml author.email
2019-07-22 02:16:23 +00:00
2019-07-23 03:17:30 +00:00
# used in footer of every post, page and blog
# TODO: optional
license:
name: MIT
# if url isnt provided, a link to a local page will be used
2019-07-23 03:17:30 +00:00
url: https://opensource.org/licenses/MIT
# link for a local legalese page
local_url: /legal/
2019-07-23 03:17:30 +00:00
# timezone
tz: America/New York
2019-09-06 11:14:09 +00:00
#
jekyll_theme_isabelline:
name: Jekyll theme «Isabelline»
url: https://github.com/rzen/jekyll-theme-isabelline
2019-07-23 03:17:30 +00:00
# used for edit link in the footer
# leave blank to disable edit link
# TODO: optional
# edit_url: https://github.com/path_to_repo/_edit/master/
# google analytics
# TODO:
# google_analytics_token: 'UA-00000000-1' # leave blank if you don't want google analytics
#
# disqus_short_name: 'your_short_name' # leave blank if you don't want disqus
# advanced
2019-07-22 02:16:23 +00:00
collections:
blog:
permalink: /:collection/:title/
output: true
links:
permalink: /link/:title/
output: true
posts:
2019-09-06 11:14:09 +00:00
# permalink: /post/:title/
2019-07-22 02:16:23 +00:00
output: true
pages:
permalink: /:title/
output: true
private:
permalink: /:collection/:title/
output: true
2019-07-23 03:56:55 +00:00
theme: jekyll-theme-isabelline
2019-07-22 02:16:23 +00:00
defaults:
- scope:
type: blog
values:
layout: post
plugins:
- rouge
2019-07-22 03:33:03 +00:00
- jekyll-tidy
2019-07-22 02:16:23 +00:00
- jekyll/tagging
- jekyll-mentions
- jekyll-sitemap
- jekyll-feed
- jekyll-seo-tag # https://github.com/jekyll/jekyll-seo-tag
# tag_page_layout: tag_page
# tag_page_dir: tag
# tag_page: /tags/
# category_page: /categories/
# tag_permalink_style: pretty
tag_page_layout: tags
tag_page_dir: tags
2019-07-23 03:17:30 +00:00
# a superset flavor of Markdown
# https://kramdown.gettalong.org
2019-07-22 02:16:23 +00:00
kramdown:
2019-09-06 11:14:09 +00:00
auto_ids: true
2019-07-22 02:16:23 +00:00
syntax_highlighter_opts:
block:
default_lang: javascript
line_numbers: true
span:
line_numbers: false
2019-07-23 03:17:30 +00:00
# generated html will be "compressed" by removing
# semantically superfluous whitespace
2019-07-22 02:16:23 +00:00
jekyll_tidy:
compress_html: true
# NOTE: must be true for syntax highlighting to work
# this known problem will be addressed in a future update
2019-07-22 02:16:23 +00:00
2019-07-23 03:17:30 +00:00
# sass
2019-07-22 02:16:23 +00:00
sass:
sass_dir: _sass
style: compressed
2019-07-23 03:17:30 +00:00
# include: ["_pages", "_blog", ]
2019-07-22 02:16:23 +00:00
# dont move the following to _site/
2019-09-06 11:14:09 +00:00
exclude: ["docker-compose.yaml", "Gemfile.lock", "Gemfile", "*.gem"]