zhwangart / hexo-theme-ocean

Ocean is a mobile-enabled Hexo theme based on the features in Hexo's default theme landscape.
https://zhwangart.com
Apache License 2.0
500 stars 87 forks source link

分类categories模块网页title显示问题 #55

Closed chunxiao01 closed 2 years ago

chunxiao01 commented 2 years ago

layout/_partial/head.ejs 16行代码修复: else if (is_category()) { title = __('categories.ejs') + ': ' + page.categories; 应该是: else if (is_category()) { title = __('categories') + ': ' + page.category;

zhwangart commented 2 years ago

感谢,已修复!