This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 166
/
_config.yml
118 lines (99 loc) · 3.96 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Base blog settings
baseurl : "/dactl/" # the subpath of your site, # e.g. /blog/
# set to '' in case of hosting on GitHub
url : "" # the base hostname & protocol for your site
# `http://<username>.github.io` - for GitHub
blog:
title : dactl
description : >
this should contain a proper description
# Layout configuration
logo_path : "assets/img/dactl.svg" # path to logo file
search_path : # "yourgitusername.github.io"
# needed for searchbox in archive page
hero_layout : true # turn on hero layout for blog and posts
hero_placeholder : "assets/img/generic_hero.jpg" # placeholder for hero image
excerpts : true # show excerpts instead of full post content on blog page
inline_footnotes : true # enable/disable barefoot inline footnotes
titles_only : false # show post titles only on main blog page
# Fonts
font : '"Rubik", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif'
load_google_fonts : 'Rubik:400,400italic,700,700italic'
# 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
stackoverflow : stackoverflow-user-name
disqus : dactl # your disqus site name
google_analytics : # 'UA-XXXXXXXX-X'
photo : "uploads/me2.png"
photo2x : "uploads/me.png"
## !!
## Advanced blog settings
## You should not change anything here unless you know what you are doing
# Gems
plugins:
- jekyll-paginate
- jekyll-sitemap
# Permalinks
permalink : posts/:slug
# Posts
excerpt_separator : <!–-break-–>
# Pagination
paginate : 5
paginate_path : '/page-:num/'
# Tags
collections:
my_tags:
output: true
permalink: /tag/:slug/
defaults:
-
scope:
path: ""
type: my_tags
values:
layout: blog-by-tag
# Handling Reading
exclude : ["README.md", "README.html"]
# https://github.com/jekyll/jekyll/issues/4619
# Markdown and highlighter settings
markdown: kramdown
# !github-pages! mandatory › https://help.github.com/articles/using-jekyll-with-pages/#configuration-settings-you-cannot-change
# Since Jekyll 3 the default highlighter is Rouge (replaced Pygments.rb in v44)
highlighter: rouge
# More › http://kramdown.gettalong.org/quickref.html
# Options › http://kramdown.gettalong.org/options.html
kramdown:
input: GFM
# https://github.com/jekyll/jekyll/pull/4090
syntax_highlighter: rouge
# Rouge Highlighter in Kramdown › http://kramdown.gettalong.org/syntax_highlighter/rouge.html
# span, block element options fall back to global
syntax_highlighter_opts:
# Rouge Options › https://github.com/jneen/rouge#full-options
# css_class: 'highlight'
#line_numbers: true # bad idea, spans don't need linenos and would inherit this option
span:
line_numbers: false
block:
line_numbers: true
start_line: 1
# Sass settings
sass:
sass_dir : _sass
style : compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# HTML Compression
# - http://jch.penibelst.de/
compress_html:
clippings : all
endings : all
comments : ["<!-- ", " -->"]
blanklines : true
profile : false
ignore:
envs : [local]