% // 使用hexo内置的辅助函数,根据不同页面,动态设置不同的页面标题 --> let title = page.title; // 检查当前页面是否为存档页面 if (is_archive()) { // 在模板中,透过 __() 或 _p() 辅助函数,即可取得翻译后的字符串。 // __()用于一般使用。 // _p()用于复数字符串。 title = __('archive_a'); if (is_month()) { title += ': ' + page.year + '/' + page.month; } else if (is_year()) { title += ': ' + page.year; } // 检查当前页面是否为分类页面 } else if (is_category()) { title = __('category') + ': ' + page.category; // 检查当前页面是否为分类页面 } else if (is_tag()) { title = __('tag') + ': ' + page.tag; // 新建about页面, 使用 hexo 命令:hexo new page about } else if (page.title === 'about') { title = __('about'); } %>