Ghost/core/server/helpers/page_url.js
Hannah Wolfe bcf5a1bc34
Switch to Eslint (#9197)
refs #9178

* Add eslint deps, remove old lint deps
* Add eslint config, remove old lint configs
* Config for server and tests are different
* Tweaked rules to suit us
* Fix linting in codebase - lots of indent changes.
* Fix a real broken test
2017-11-01 13:44:54 +00:00

18 lines
503 B
JavaScript

// ### Page URL Helper
//
// *Usage example:*
// `{{page_url 2}}`
//
// Returns the URL for the page specified in the current object context.
var proxy = require('./proxy'),
getPaginatedUrl = proxy.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);
};