You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see in the picture, the title of the html file is in english. If the title is generated by hexo, is there a way to customize it?
Let's say, I want to set the title as 画廊 but not /category/gallery, what should I do?
Begging for your reply.
The text was updated successfully, but these errors were encountered:
var title = page.title;
if (is_archive()){
title = __('Archive');
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;
}
分类页面的标题如何设置?
As you can see in the picture, the title of the html file is in english. If the title is generated by hexo, is there a way to customize it?
Let's say, I want to set the title as
画廊
but not/category/gallery
, what should I do?Begging for your reply.
The text was updated successfully, but these errors were encountered: