summaryrefslogtreecommitdiff
path: root/routes/index.js
blob: dcf9dc12f60b1e9ef02bdc561c810bda795143c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * GET home page.
 */

exports.index = function(req, res){
  if (req.user) {
    res.render('index', { title: 'Wait Site', currentUser: req.user });
  } else {
    res.render('blank', {});
  }
};

exports.hover = function(req, res){
  res.render('hover', { title: 'Wait Site', currentUser: req.user });
};