blob: 89bd20fbe778ac4a98a33dbfd982bae99e3adc92 (
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
|
# ***************************
# SITE CONFIG
# ***************************
# 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.
author:
# Optional information that appears in the 'Contact' sidebar.
# Mainly used to generate URLs to various social sites.
# email address of the site author.
#email:
# Twitter name minus the @ character.
#twitter:
# Git hub name.
#github:
# Controls the number of recent posts shown on the main index page.
max_recent_posts: 10
# ***************************
# JEKYLL CONFIG
# ***************************
# 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/
# ***************************
# PLUGINS CONFIG
# ***************************
# Directory where plugins are located.
plugins: _site_build/_plugins
# For the ExceprtFilter plugin. The cutline in posts that indicate the end of the excerpt.
excerpt_tag: '<!--more-->'
|