Skip to content

Instantly share code, notes, and snippets.

@dsignr
Last active March 16, 2016 09:25
Show Gist options
  • Save dsignr/cdee17fec95f5db25726 to your computer and use it in GitHub Desktop.
Save dsignr/cdee17fec95f5db25726 to your computer and use it in GitHub Desktop.
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