module.exports = function(app){ app.get('/', app.controllers.HomeController.indexView); app.get('/view/:post_id', app.controllers.HomeController.postView); app.get('/page/:page', app.controllers.HomeController.filterByPagination); };