You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
282 B
19 lines
282 B
9 months ago
|
/**
|
||
|
* Butterfly
|
||
|
* 404 error page
|
||
|
*/
|
||
|
|
||
|
'use strict'
|
||
|
|
||
|
hexo.extend.generator.register('404', function (locals) {
|
||
|
if (!hexo.theme.config.error_404.enable) return
|
||
|
return {
|
||
|
path: '404.html',
|
||
|
layout: ['page'],
|
||
|
data: {
|
||
|
type: '404',
|
||
|
top_img: false
|
||
|
}
|
||
|
}
|
||
|
})
|