Files
2025-07-16 16:30:56 +00:00

17 lines
290 B
JavaScript
Executable File

/**
* Theme Redefine
* 404 error page
*/
hexo.extend.generator.register('404', function (locals) {
return {
path: '404.html',
layout: '404',
data: {
title: 'Page Not Found',
type: 'notfound',
page: locals.pages.findOne({ path: '404.html' })
}
}
});