mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
c2fa469c4d
refs #9601 - refactor architecture of routing so you can define a channel - a channel is a different way of looking at your posts (a view) - a channel does not change the url of a resource Example channel ``` routes: /worldcup-2018-russia/: controller: channel filter: tag:football18 data: tag.football18 ``` - added ability to redirect resources to a channel/static route - support templates for channels - ensure we still support static routes (e.g. /about/: home) - ensure pagination + rss works out of the box
13 lines
431 B
JavaScript
13 lines
431 B
JavaScript
const debug = require('ghost-ignition').debug('services:routing:helpers:render-entries'),
|
|
formatResponse = require('./format-response'),
|
|
renderer = require('./renderer');
|
|
|
|
module.exports = function renderEntries(req, res) {
|
|
debug('renderEntries called');
|
|
return function renderEntries(result) {
|
|
// Format data 2
|
|
// Render
|
|
return renderer(req, res, formatResponse.entries(result));
|
|
};
|
|
};
|