blob: 6f78a0b0b38f054101a793a29bb98a9b2eda6518 (
plain)
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
|
# ***************************
# SITE
# ***************************
# Set to true when building the site for production.
# Some parts of the site are only built in production mode. E.g. Google analytics code.
production: false
# Full url for the site minus the ending forward slash.
url:
# Appears in the <title> and <header> elements within the site.
title:
# Optional. Appears in the site's main <header> element.
#subtitle:
# Used in various places where the author of the site needs to appear.
# For example, the copyright notice.
# Also appears in the RSS feed.
author:
# Used in the meta description tag of the site and the description element of the RSS feed.
description:
# Optional information that appears in the 'Contact' sidebar.
# Mainly used to generate URLs to various social sites.
# email address of the site author. Also appears in the RSS feed if specified.
#email:
# Twitter name minus the @ character.
#twitter:
# Git hub name.
#github:
# Facebook username
#facebook
# Controls the number of recent posts shown on the main index page and in the RSS feed.
max_recent_posts: 10
# Used in the footer of the site and RSS feed.
copyright_year:
# Optional Google analytics.
#google_ua:
# Optional Feedburner ID.
#feedburner:
# Optional Disqus integration.
#disqus_shortname:
# ***************************
# JEKYLL
# ***************************
# Markdown engine that will be used.
markdown: rdiscount
# Directory where Jekyll will look to transform files.
source: _site_build
# Directory where Jekyll will save transformed files.
destination: public
# Format that Jekyll will use when generating URLs to posts.
permalink: /archives/:year/:month/:day/:title/
# Enable if you want syntax highlighting.
# Will require you to install pygments onto your system.
#pygments: true
# ***************************
# PLUGINS
# ***************************
# Directory where plugins are located.
plugins: _site_build/_plugins
# Set to true to have Jekyll generate category pages for posts.
#generate_category_indexes: true
# The directory where categories will be served from. Defaults to categories
#category_dir:
# String prefixed to the title of the category page. Defaults to Category:
#category_title_prefix:
# String prefixed to the meta description of the category page. Defaults to Category:
#category_meta_description_prefix:
# ***************************
# RAKE TASKS
# ***************************
# The number of test posts that will be generated by the task test_posts:create
num_test_posts: 50
|