-
Notifications
You must be signed in to change notification settings - Fork 139
/
_config.yml
130 lines (116 loc) · 3.81 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
119
120
121
122
123
124
125
126
127
128
129
130
# Welcome to Jekyll!
# In addition to these settings, there is a file _data/tokens-template.yml
# that you'll want to customize for your site. It's named 'tokens' because
# that was it's original purpose, but because tokens.yml is .gitexcluded, it's
# a good place to store your site-specific data that you'd rather not have
# forked or cloned. Of course, that means you'd want to back it up elsewhere.
# Also, for your post bylines, add author info for yourself in `_data/authors.yml`.
# (Using that method instead of site.owner, in case your posts get cloned with your repo.)
# Site settings
title: _site name_
description: _description_
owner:
name: _your name_ # or company name
url: "http://example.com" # your URL
first_published: 2010 # if migrating another site, the year of your first publish
# Must be a 4-digit integer year (math is used on it)
url: "http://example.com" # the base hostname & protocol for this site
baseurl: "" # the subpath of your site, e.g. /blog
# Note you'll have to move your robots.txt to the root if you want it used.
# And list multiple sitemaps if there are other subdirectories you want indexed
# besides this blog.
lang: en-us # used in HTML lang attributes
# on landing page
# - set the greeting only if you want to display the first green section
greeting:
title: _Your greeting_
text: _Your detailed greeting text_
# - displayed at the bottom
closing-head: _Your closing_
closing-para: _Your detailed closing_
# on all pages (and the first three you list display with greeting, if included)
social:
twitter: https://twitter.com/_username_
github: https://github.com/_username_
linkedin-square: https://linkedin.com/in/_username_
facebook-official: https://facebook.com/_username_
#google-plus-square: https://plus.google.com/u/0/+_username_
email: /contact/ # you can configure and use this contact page or use your email addy
#flickr:
#instagram:
#youtube-square:
#spotify:
#stack-overflow:
#vimeo:
#reddit:
#stubleupon:
#delicious:
#pied-piper:
#digg:
#soundcloud:
#deviantart:
#angellist:
#tumblr-square:
#stackexchange:
#weibo:
#trello:
#foursquare:
#linux:
#bitbucket-square:
#vk:
#slack:
#vine:
#weixin:
#yelp:
#skyatlas:
#leanpub:
#connectdevelop:
#ils:
#forumbee:
#tripadvisor:
#amazon:
# - title for your blog's featured posts
features-title: Featured topics
# if you use this repo's `ruby compose.rb` script to initiate new posts, put the
# command to invoke your editor here. (I didn't spend time dealing with spaces
# and full paths of the various OSes in compose.rb. For my Windows
# environment, I just put a subl.cmd file in my PATH that points to the full
# path to Sublime's subl.exe.) Also, put your most common post extension.
compose:
editor: subl
extension: md
# choose where to put back and next links:
# top, bottom, both, none
navlinks: bottom
# expecting more works? mark your list as in-progress
works_in_progress: yes
# Github pages posts future posts by default.
# You'll want to move the user guide posts to _drafts if you set this to true.
future: false
# If you have custom extensions, specifically includes/_my/custom.scss,
# set this to yes
custom_extensions: no
# Build settings
permalink: /:categories/:title.html
markdown: kramdown
#sass:
# style: compressed
exclude: ['site.bat','compose.rb','README.md']
include: ['_pages','.htaccess']
defaults:
- scope:
path: _pages
values:
layout: page
#permalink: /:slug/ # dunna work. See github.com/jekyll/jekyll/issues/2280
- scope:
path: _posts
values:
layout: post
- scope:
path: _drafts
values:
layout: post
# to initialize arrays in assignments (assign myarr = site.empty_array)
# (easier to grok than assign myarr = '' | split',')
empty_array: []