658a6dd284
- the proxy should always be used to access other parts of Ghost, including the urlService etc - use consistent ES6 style for requires - minimise use of lodash where possible - remove circular dependency between proxy and template util - End goal here is to enforce that the only link between helpers + the rest of Ghost is the proxy
18 lines
506 B
JavaScript
18 lines
506 B
JavaScript
// ### Page URL Helper
|
|
//
|
|
// *Usage example:*
|
|
// `{{page_url 2}}`
|
|
//
|
|
// Returns the URL for the page specified in the current object context.
|
|
const {metaData} = require('./proxy');
|
|
const getPaginatedUrl = metaData.getPaginatedUrl;
|
|
|
|
// We use the name page_url to match the helper for consistency:
|
|
module.exports = function page_url(page, options) { // eslint-disable-line camelcase
|
|
if (!options) {
|
|
options = page;
|
|
page = 1;
|
|
}
|
|
return getPaginatedUrl(page, options.data.root);
|
|
};
|