-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.yml
101 lines (86 loc) · 3.2 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
---
# Usage: http://ruhoh.com
# This helps parsers (and hosting platforms) determine which version is needed to compile your site.
# If you compile your blog yourself, setting this won't matter, but it's a nice thing to keep updated.
RuhohSpec: "2.1"
# Used for things like RSS that need the full URL to a given resource.
# This DOES NOT affect any of your paths or links in any way.
# This DOES NOT configure domain mapping. See post2.ruhoh.com for hosting options.
production_url: "http://sample.com"
# Intelligently prepends all urls in the system with the given base_path.
# This allows you to host your blog in a subdirectory of a given website.
# Example:
# To host at the path: http://myuniversity.edu/staff/me/~/blog.
# set base_path: "/staff/me/~/blog"
# NOTE: base_path is never added in development mode (for convenience).
base_path: "/"
# Tell ruhoh which folder will model the "theme"
twitter :
# Tells ruhoh which collection class to use for this folder.
# Here we use "theme" which makes this folder the theme.
use : "theme"
_root:
summary_lines: 20
rss:
enable: false
paginator:
enable: false
posts:
sort: ["date", "desc"]
permalink: "/:categories/:title/"
summary_lines: 20
latest: 5
rss:
enable: true
limit: 5
# The url to prepend to the rss.xml feed, e.g.: /posts/rss.xml
# Defaults to: "/<resource_name>/"
# Always start with a forward slash, as ruhoh will internally respect any base_path you set.
# url: "/posts/"
paginator:
enable: false
# The url your paginated pages will be located: e.g /posts/index/1, /posts/index/2, /posts/index/3
# Always start with a forward slash, as ruhoh will internally respect any base_path you set.
url: "/posts/index/"
per_page: 5
# Set the custom page you want page#1 of your posts paginator to link to. (default: /posts/index/1)
# Note the default is technically <paginator.url>/1 just as the other paginated pages.
# It is up to you to display the paginator_pagination links somewhere in this case.
#
# root_page has been set to the root for a more traditional style blog feel.
root_page: '/'
# Enable the asset pipeline to process stylesheets and javascripts using sass, coffeescript, etc.
# The asset pipeline supports live preview + bundling/minification on compile.
# Sprockets is used for the ruby version: https://github.com/sstephenson/sprockets#readme
#
# To Enable:
# 1. Set enable to true.
# 2. Update Gemfile to include the sprockets and supporting processor gems.
#
# It's done this way because some users just want to write a freaking blog post
# and have no need for a billion gems -- hopefully you agree with me =)
asset_pipeline:
enable: false
widgets :
analytics :
use : google
# -- config for google --
tracking_id : 'UA-123-12'
# -- config for getclicky --
# site_id :
comments :
use : disqus
enable : true
# -- config for disqus --
short_name : jekyllbootstrap # Change This!
# -- config for livefyre --
# site_id : 123
# -- config for intensedebate --
# account : 123abc
# -- config for facebook --
# appid : 123
# num_posts: 5
# width: 580
# colorscheme: light
google_prettify :
linenums : true