mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
35e3e0708c
- The proxy is not a helper, we want the helpers folder to only include helpers - The proxy is also meant to be the interface to Ghost for the helpers, and we want to enforce that - This is a small step on the way
18 lines
516 B
JavaScript
18 lines
516 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('../services/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);
|
|
};
|