stomping-grounds/server/pages.js
2015-09-07 17:51:43 +02:00

50 lines
586 B
JavaScript

module.exports = function(mw) {
return {
public: [
{
title: 'Home',
path: '/'
},
{
title: 'Process'
},
{
title: 'Services',
pages: [
{
title: 'Entertainment',
},
{
title: 'Security',
},
{
title: 'Integration',
}
]
},
{
title: 'Markets'
},
{
title: 'About'
},
{
title: 'Contact'
}
],
//redirects: [
// [ '/coupon','/kupongen' ],
//],
//admin: [
// {
// title: 'Dashboard',
// path: '/',
// template: 'admin/pages/index'
// }
//]
};
};