0%

hexo 基于 NexT 主题 更改导航栏

更改导航栏

主题首页的默认页面中是没有标签、分类、归档页面的,需要手动生成一下。先在博客根目录下打开git-bash或终端,然后键入以下命令

1
hexo new page tags && hexo new page categories && hexo new page archives

然后打开新增的source/tags/index.md,修改如下

1
2
3
4
# source\tags\index.md
title: 标签
date: 2018-10-19 22:57:00
+ type: tags

同理再修改另外两个新增文件夹下的index.md

最后修改主题配置文件的menu字段

1
2
3
4
5
6
7
# themes\next\_config.yml
menu:
home: / || home
about: /about/ || user
+ tags: /tags/ || tags
+ categories: /categories/ || th
+ archives: /archives/ || archive