原主题Next的Mist

根目录下的_config.yml文件配置

themes: next

themes/next目录下_config.yml文件配置

# Schemes
scheme: Mist

更为主题cactus

主题地址:https://github.com/probberechts/hexo-theme-cactus

修改根目录下的_config.yml文件配置

theme: cactus
theme_config:
  colorscheme: white  

修改themes/cactus目录下_config.yml文件配置

projects_url: http://github.com/akapril

nav:
  home: /
  # About: /about
  search: /search/

social_links:
  github: http://github.com/akapril
  
posts_overview:
  show_all_posts: true

配置搜索

安装hexo-generator-search插件

npm install hexo-generator-search --save

创建搜索页面

 hexo new page search

创建后内容修改成

title: Search
type: search
---

最后在themes/cactus目录下_config.yml文件配置

nav:
  search: /search/

nav下导航菜单可随意命名配置

nav:
  主页: /
  搜索: /search/