recettes/config/pagination.js

11 lines
244 B
JavaScript

module.exports = {
'collections.recettes': {
perPage: 15,
first: 'index.html',
layout: 'index.hbs',
path: 'page/:num/index.html',
groupBy: function(data) {
return data.title.normalize('NFD').charAt(0);
}
}
}