mirror of https://github.com/jkjoy/sunpeiwen.git
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
|
|
||
|
|
||
|
hexo.extend.generator.register('404', function (locals) {
|
||
|
if (!hexo.theme.config.page_404.enable) return
|
||
|
return {
|
||
|
path: '404.html',
|
||
|
data: {},
|
||
|
layout: ['404','layout']
|
||
|
};
|
||
|
});
|