Ghost/core/frontend/services/sitemap/utils.js
Vikas Potluri 1bd8c18a16
Moved core/server/lib/url-utils to core/shared/url-utils (#11856)
* moved url-utils from server to shared
* updated imports of url-utils
2020-05-28 11:57:02 +01:00

14 lines
419 B
JavaScript

const urlUtils = require('../../../shared/url-utils');
let sitemapsUtils;
sitemapsUtils = {
getDeclarations: function () {
let baseUrl = urlUtils.urlFor('sitemap_xsl', true);
baseUrl = baseUrl.replace(/^(http:|https:)/, '');
return '<?xml version="1.0" encoding="UTF-8"?>' +
'<?xml-stylesheet type="text/xsl" href="' + baseUrl + '"?>';
}
};
module.exports = sitemapsUtils;