mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
16 lines
246 B
JavaScript
16 lines
246 B
JavaScript
/**
|
|
* 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',
|
|
data: locals.posts,
|
|
layout: ['404']
|
|
}
|
|
})
|