roots-records
Version:
dynamic content functionality for roots
21 lines (16 loc) • 364 B
text/coffeescript
records = require '../../..'
S = require 'underscore.string'
module.exports =
ignores: ["**/_*"]
locals:
foo: "bar"
extensions: [
records(
books:
out: (book) -> "/books/#{S.slugify(book.title)}"
template: "views/_book.jade"
data: [ { title: 'testing' } ]
)
]
jade:
pretty: true