mirror of https://github.com/jkjoy/sunpeiwen.git
28 lines
636 B
JavaScript
28 lines
636 B
JavaScript
|
var ejs = require('ejs');
|
||
|
var pathFn = require('path');
|
||
|
var fs = require('fs');
|
||
|
|
||
|
var sitemapSrc = pathFn.join(__dirname, '../baidusitemap.ejs');
|
||
|
var sitemapTmpl = ejs.compile(fs.readFileSync(sitemapSrc, 'utf8'));
|
||
|
|
||
|
module.exports = function(locals){
|
||
|
var config = this.config;
|
||
|
|
||
|
var posts = [].concat(locals.posts.toArray(), locals.pages.toArray())
|
||
|
.filter(function(post){
|
||
|
return post.baidusitemap !== false;
|
||
|
})
|
||
|
.sort(function(a, b){
|
||
|
return b.updated - a.updated;
|
||
|
});
|
||
|
|
||
|
var xml = sitemapTmpl({
|
||
|
config: config,
|
||
|
posts: posts
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
path: config.baidusitemap.path,
|
||
|
data: xml
|
||
|
};
|
||
|
};
|