39 lines
1.5 KiB
JavaScript
39 lines
1.5 KiB
JavaScript
"use strict";
|
|
|
|
module.exports = (hexo) => {
|
|
const isZh = hexo.theme.i18n.languages[0].search(/zh-CN/i) !== -1;
|
|
if (isZh) {
|
|
hexo.log.info(`
|
|
------------------------------------------------
|
|
| |
|
|
| __ ________ _____ |
|
|
| /\\\\ \\ / / ____| __ \\ |
|
|
| / \\\\ \\_/ /| |__ | |__) | |
|
|
| / /\\ \\\\ / | __| | _ / |
|
|
| / ____ \\| | | |____| | \\ \\ |
|
|
| /_/ \\_\\_| |______|_| \\_\\ |
|
|
| |
|
|
| 感谢使用 Ayer 主题 ! |
|
|
| 文档: https://shen-yu.gitee.io/2019/ayer/ |
|
|
| |
|
|
------------------------------------------------
|
|
`);
|
|
} else {
|
|
hexo.log.info(`
|
|
----------------------------------------------------
|
|
| |
|
|
| __ ________ _____ |
|
|
| /\\\\ \\ / / ____| __ \\ |
|
|
| / \\\\ \\_/ /| |__ | |__) | |
|
|
| / /\\ \\\\ / | __| | _ / |
|
|
| / ____ \\| | | |____| | \\ \\ |
|
|
| /_/ \\_\\_| |______|_| \\_\\ |
|
|
| |
|
|
| Thank you for using Ayer theme ! |
|
|
| Docs: https://github.com/Shen-Yu/hexo-theme-ayer |
|
|
| |
|
|
----------------------------------------------------
|
|
`);
|
|
}
|
|
};
|