Hexo Next主题 修锅记

修锅~

1、日志页面异常

问题描述:

使用了Hexo的Next主题后,点击左侧菜单栏中的 日志 标签,显示

404 File not found

解决过程:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
审查元素查看对应标签,发现日志显示href="/archives/%7C%7C%20archive"

而功能正常的分类、标签显示

href="/categories/index.html"、href="/tags/index.html"

来到文件themes/next/layout/_macro/sidebar.swig中

注释掉

<a href="{{ url_for(theme.menu.archives).split('||')[0] | trim }}">

并在原位置添加

<a href="{{url_for(theme.menu.archives.split('||')[0])| trim}}">

问题解决!!!

补锅~

  1. 增加侧边栏头像,以及圆角化、旋转效果
  2. 文章摘要(auto_excerpt)
  3. 社交图标(social)
  4. favicon
  5. 友链(links)
  6. 文章更新时间(updated_at)
不要打赏,只求关注呀QAQ