exports.article = function (req, res, next, id) {
  Article.load(id, function (err, article) {
    if (err) {
      return next(err);
    }