Ghost/core/server/data/xml/sitemap/utils.js

14 lines
379 B
JavaScript
Raw Normal View History

var config = require('../../../config'),
utils;
utils = {
getDeclarations: function () {
var baseUrl = config.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 = utils;