stomping-grounds/server/pages.js
2015-09-02 11:04:34 +02:00

31 lines
412 B
JavaScript

module.exports = function(mw) {
return {
public: [
{
title: 'Start',
template: 'pages/index',
path: '/'
}, {
title: 'Spytext'
}, {
title: 'Playground'
}, {
title: 'CSS',
name: 'css'
}
],
//redirects: [
// [ '/coupon','/kupongen' ],
//],
//admin: [
// {
// title: 'Dashboard',
// path: '/',
// template: 'admin/pages/index'
// }
//]
};
};