admin-lte-express
Version:
AdminLTE 2.3.2 with express and express-handlebars.
19 lines (17 loc) • 411 B
JavaScript
exports.prefix = '/dashboard';
//exports.before = function(request, response, next) { next() };
exports.index = function(request, response) {
response.render('dashboard/index', {
title: 'Blank Page'
});
};
exports.v1 = function(request, response) {
response.render('dashboard/v1', {
title: 'V1'
});
};
exports.v2 = function(request, response) {
response.render('dashboard/v2', {
title: 'V2'
});
};