-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
页面title问题 #117
Comments
试一下别的文件名, 不要使用archives. 你可以:
我这里本地测试是可以的, 你可以试试。 ps: 好像只要文件名不是archives就行 |
我按照你的方法试了一下,确实可以了,有强迫症的我感觉到无比的酣畅淋漓,多谢啦!感激不尽! <title>
<% if (page.title){ %>
<%= page.title %> | <%= config.title %>
<% } else { %>
<%= config.title %>
<% } %>
</title> 根据源码来看,找不到 |
老哥, 我又研究了下,应该是文件夹重复了。 问题出在 hexo-folder/_config.yml中, 该文件中的archive_dir选项默认为archives,你可以更改该选项为其他名字。 当执行 hexo generate 命令时, hexo会建立public文件(同样在_config.yml定义), 在public文件夹下又会导入 hexo-folder/source/ 下的文件夹(包括你自己建立的archives文件) , 同时建立archive_dir(默认为archives), 所以 _config.yml 中定义的archive_dir覆盖了你在source下建立的 archives 其实 tag_dir 默认为 tags, 也发生了重复, 但 hexo并没有删除它 你可以更改 _config.yml 中的 tag_dir, archive_dir, 执行 hexo generate, 然后查看 public 文件中的内容, 多试几次就明白了。 |
兄弟,我看了一下,按照你的思路,修改 |
兄弟,这个主题的
Archives
这页面的title
和Tags
、Project
的页面的title 格式不一样,我这个强迫症感觉有点难受,我看了下你的博客,也存在这个问题,我尝试在根目录下的source
下创建新的archives
文件夹,其中index.md
内容是:但是没用。
不知道你有没有注意到这个问题?
这是我的博客
The text was updated successfully, but these errors were encountered: