Skip to content

Commit 6d23f42

Browse files
authored
Create _config.yml
1 parent 9d7b8ad commit 6d23f42

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

_config.yml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Where things are
2+
source : .
3+
destination : ./_site
4+
collections_dir : .
5+
plugins_dir : _plugins # takes an array of strings and loads plugins in that order
6+
layouts_dir : _layouts
7+
data_dir : _data
8+
includes_dir : _includes
9+
sass:
10+
sass_dir: _sass
11+
collections:
12+
posts:
13+
output : true
14+
15+
# Handling Reading
16+
safe : false
17+
include : [".htaccess"]
18+
exclude : ["Gemfile", "Gemfile.lock", "node_modules", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"]
19+
keep_files : [".git", ".svn"]
20+
encoding : "utf-8"
21+
markdown_ext : "markdown,mkdown,mkdn,mkd,md"
22+
strict_front_matter : false
23+
24+
# Filtering Content
25+
show_drafts : null
26+
limit_posts : 0
27+
future : false
28+
unpublished : false
29+
30+
# Plugins
31+
whitelist : []
32+
plugins : []
33+
34+
# Conversion
35+
markdown : kramdown
36+
highlighter : rouge
37+
lsi : false
38+
excerpt_separator : "\n\n"
39+
incremental : false
40+
41+
# Serving
42+
detach : false
43+
port : 4000
44+
host : 127.0.0.1
45+
baseurl : "" # does not include hostname
46+
show_dir_listing : false
47+
48+
# Outputting
49+
permalink : date
50+
paginate_path : /page:num
51+
timezone : null
52+
53+
quiet : false
54+
verbose : false
55+
defaults : []
56+
57+
liquid:
58+
error_mode : warn
59+
strict_filters : false
60+
strict_variables : false
61+
62+
# Markdown Processors
63+
kramdown:
64+
auto_ids : true
65+
entity_output : as_char
66+
toc_levels : [1, 2, 3, 4, 5, 6]
67+
smart_quotes : lsquo,rsquo,ldquo,rdquo
68+
input : GFM
69+
hard_wrap : false
70+
footnote_nr : 1
71+
show_warnings : false
72+
73+
74+
remote_theme: pages-themes/[email protected]
75+
plugins:
76+
- jekyll-remote-theme # add this line to the plugins list if you already have one
77+

0 commit comments

Comments
 (0)