Skip to content

Latest commit

 

History

History
83 lines (54 loc) · 1.56 KB

中文文档.md

File metadata and controls

83 lines (54 loc) · 1.56 KB

QnA, 一个 Hexo 主题

为 Hexo 设计的『知识库』类主题。

文档

展示:

如何安装

安装

$ git clone https://github.com/cheng-kang/hexo-theme-qna.git themes/QnA

启用

修改根目录中 _config.ymlthemeQnA。

更新

cd themes/QnA
git pull

高级功能

发布到 Github

安装 Hexo 插件 hexo-deployer-git

$ npm install hexo-deployer-git --save

编辑你 Hexo 博客根目录中的 _config.yml 文件。

deploy:
  type: git
  repo: <repository url> # https://github.com/cheng-kang/hexo-theme-qna.git
  branch: [branch] # master

启用中文站内搜索

QnA 默认只支持英文站内搜索。

安装 Hexo 插件 hexo-generator-search

$ npm install hexo-generator-search --save

添加新页面

  1. 添加一个新页面,例如:about 页面。改变页面内容请修改根目录下 source/about/index.md 文件。
$ hexo new page about
  1. 编辑 theme/QnA 中的 _config.yml
menu:
  Home: /
  Archive: /archives
  # Add new page config here
  # Page Dispay Name: /pagename
  # e.g.
  About: /about