This repository has been archived by the owner on Feb 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.rb
81 lines (68 loc) · 1.51 KB
/
config.rb
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
###
# Assets
###
set :css_dir, 'assets/css'
set :js_dir, 'assets/js'
set :images_dir, 'assets/img'
###
# Compass
###
compass_config do |config|
config.output_style = :compact
end
###
# develop settings
###
configure :development do
set :debug_assets, true
activate :directory_indexes
end
###
# build settings
###
configure :build do
# activate :minify_css
# activate :minify_javascript
activate :directory_indexes
end
set :build_dir, "tmp"
###
# Set template languages
###
set :markdown, :layout_engine => :slim
set :blog_layout_engine, :slim
set :slim, { :pretty => true, :sort_attrs => false, :format => :html5 }
page '/feed', :layout => false
page '/feed.xml', :layout => false
page '/no_analytics_report.html', :layout => false
###
# GZIP text files
###
activate :gzip
###
# blog settings
###
Time.zone = 'Tokyo'
###
# Syntax Highlighting
###
activate :syntax
set :markdown_engine, :redcarpet
set :markdown, :fenced_code_blocks => true
activate :blog do |blog|
blog.layout = 'layouts/post'
blog.paginate = true
blog.sources = 'archives/:year-:month-:day-:title.html'
blog.default_extension = '.md'
blog.tag_template = 'tag.html'
blog.calendar_template = 'calendar.html'
blog.taglink = 'tag/:tag.html'
blog.permalink = ':year/:month/:day/:title.html'
blog.year_link = ":year.html"
blog.month_link = ":year/:month.html"
blog.day_link = ":year/:month/:day.html"
# blog.summary_separator = /(readmore)/
# blog.summary_length = 250
# blog.per_page = 10
# blog.page_link = "page/:num"
end