文章目錄
  1. 1. Quick Start
    1. 1.1. Create a new post
    2. 1.2. Run server
    3. 1.3. Generate static files
    4. 1.4. Deploy to remote sites
    5. 1.5. 新建一個 about 頁面:
    6. 1.6. 新建一個 分類 頁面:
    7. 1.7. 兩個以上tags設法

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

新建一個 about 頁面:

1
hexo new page "about"

功能表顯示 about 連結,在主題的 _configy.yml 設置中將 menu 中 about 前面的注釋去掉即可。

1
2
3
4
5
menu:
home: /
archives: /archives
tags: /tags
about: /about

並在功能表中顯示頁面連結。

新建一個 分類 頁面:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
新建一個頁面,命名為 categories 。命令如下:
hexo new page categories
編輯剛新建的頁面,將頁面的類型設置為 categories ,主題將自動為這個頁面顯示所有分類。
title: 分類
date: 2014-12-22 12:39:04
type: "categories"
---
注意:如果有啟用多說 或者 Disqus 評論,預設頁面也會帶有評論。需要關閉的話,請添加欄位 comments 並將值設置為 false,如:
title: 分類
date: 2014-12-22 12:39:04
type: "categories"
comments: false
---
在功能表中添加連結。編輯主題的 _config.yml ,將 menu 中的 categories: /categories 注釋去掉,如下:
menu:
home: /
categories: /categories
archives: /archives
tags: /tags

兩個以上tags設法

用yaml語法,例如要設兩個tags為github與hexo

1
2
3
tags:
- github
- hexo

文章目錄
  1. 1. Quick Start
    1. 1.1. Create a new post
    2. 1.2. Run server
    3. 1.3. Generate static files
    4. 1.4. Deploy to remote sites
    5. 1.5. 新建一個 about 頁面:
    6. 1.6. 新建一個 分類 頁面:
    7. 1.7. 兩個以上tags設法