Last active
March 16, 2016 09:25
-
-
Save dsignr/cdee17fec95f5db25726 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
activate :blog do |blog| | |
blog.prefix = 'blog' | |
blog.defaultextension = '.markdown' | |
blog.sources = 'articles/{category}/{title}' | |
blog.permalink ='{category}/{title}' | |
blog.summary_separator = /(READMORE)/ | |
blog.layout = '/blog/bloglayout' | |
blog.tagtemplate = 'tag.html' | |
blog.calendartemplate = 'calendar.html' | |
# Enable pagination | |
blog.paginate = true | |
blog.perpage = 10 | |
blog.pagelink = 'page/{num}.html' | |
blog.custom_collections = { | |
category: { | |
link: '/categories/{category}.html', | |
template: '/category.html' | |
} | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment