aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: d48026ab7eeb0fd301f58a5f3401fb43296fd6a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# hugo-theme-even
A super simple theme for Hugo

> 该主题完全移植自 [hexo-theme-even](https://github.com/ahonn/hexo-theme-even)

## Demo
[在线预览 Demo](http://ahonn.github.io/)

## Feature
- 自定义样式
- 支持 Fancybox
- 版权信息,自定义许可协议
- 文章打赏,添加二维码

## Screenshots
![even-screenshots](http://ouv0frko5.bkt.clouddn.com/eerqv.jpg)

## Installation
```bash
$ git clone https://github.com/olOwOlo/hugo-theme-even themes/even
```

## Getting Start

> 拉至最下有一份完整的配置文件,你可以按需更改

### 配置站点基本信息

```toml
baseURL = "http://localhost:1313"
languageCode = "zh-CN"
defaultContentLanguage = "zh-CN"
title = "olOwOlo"
enableRobotsTXT = true
enableEmoji = true
# 自动检测是否包含 中文\韩文\日文
hasCJKLanguage = true

theme = "even"

# 首页显示的文章条目数量,默认为10(可选)
paginate = 5

# Disqus Username(可选)
disqusShortname = "disqus_shortname"

# Google Analytics UA number(可选)
googleAnalytics = "UA-XXXXXXXX-X"

# Copyright of your post(可选)
copyright = "<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/3.0/cn/\" target=\"_blank\" title=\"中国大陆 (CC BY-NC-SA 3.0 CN)\">署名-非商用-相同方式共享 3.0</a>"

[author]
  name = "olOwOlo"

[sitemap]
  changefreq = "weekly"
  priority = 0.5
  filename = "sitemap.xml"
```

### 配置目录

**PS: Archives 的 url 为 /post/**

```toml
[[menu.main]]
  name = "Home"
  weight = 10
  identifier = "home"
  url = "/"
[[menu.main]]
  name = "Archives"
  weight = 20
  identifier = "archives"
  url = "/post/"
[[menu.main]]
  name = "Tags"
  weight = 30
  identifier = "tags"
  url = "/tags/"
[[menu.main]]
  name = "Categories"
  weight = 40
  identifier = "categories"
  url = "/categories/"
[[menu.main]]
  name = "About"
  weight = 50
  identifier = "about"
  url = "/about/"
```

### 主题配置

```toml
[params]
  # 请勿更改
  version = "2.5.0"
  # 站点建立时间
  since = "2017"
  # 站点信息(可选)
  keywords = ["olOwOlo", "blog", "博客"]
  description = "olOwOlo blog."
  # 归档、标签、分类每页显示的文章数目
  archive-paginate = 50
  
  # 一些全局开关(你可以在每一篇内容的 front matter 中单独关闭某些选项)
  toc = true                # 是否开启目录
  fancybox = true           # 是否启用fancybox(图片可点击)
  bootcdn = true            # 是否使用bootcdn(针对大陆推荐使用)
  mathjax = false           # 是否使用mathjax(数学公式)
  linkToMarkDown = false    # 是否在链接到markdown原始文件(如果你愿意共享你的markdown文件)

  # 文章打赏
  [params.reward]
    enable = true
    wechat = "/path/to/your/image.png"
    alipay = ""
  
  # 第三方服务
  # Changyan
  changyanAppid = ""
  changyanAppkey = ""
  # baidu push
  baidu_push = false
  # Baidu Analytics
  baidu_analytics = ""
  # Baidu Verification
  baidu_verification = ""
  # Google Verification
  google_verification = ""

  # 社交链接
  [params.social]
    a-email = "your@email.com"
    b-stack-overflow = ""
    c-twitter = ""
    d-facebook = ""
    e-linkedin = ""
    f-google = ""
    g-github = ""
    h-weibo = ""
    i-zhihu = ""
    j-douban = ""
    k-pocket = ""
    l-tumblr = ""
```

### 输出 markdown 文件(可选)

在 config.toml 中添加以下代码即可,此时将`linkToMarkDown`设置为`true`即可生效

```toml
[mediaTypes]
  [mediaTypes."text/plain"]
    suffix = "md"

[outputFormats.MarkDown]
  mediaType = "text/plain"
  isPlainText = true
  isHTML = false

[outputs]
  home = ["HTML", "RSS"]
  page = ["HTML", "MarkDown"]
  section = ["HTML", "RSS"]
  taxonomy = ["HTML", "RSS"]
  taxonomyTerm = ["HTML"]
```

### 更多配置
- **favicon.ico:** 将你的 favicon.ico 放置在`/static`目录下即可
- **主题颜色:** 主题自带 Default | Mint Green | Cobalt Blue | Hot Pink | Dark Violet 五种颜色

    你可以通过更改`/src/css/_variable.scss`中`$theme-color-config`的值来更改主题颜色
    
    你也可以自定义主题颜色,参见[源主题文档](https://github.com/ahonn/hexo-theme-even/wiki/%E4%BF%AE%E6%94%B9%E4%B8%BB%E9%A2%98%E9%A2%9C%E8%89%B2)

- **front matter:** `/even/archetypes/default.md`中说明了一些你可以在文章的 front matter 中使用的参数,你可以有选择性将其添加至你的`/archetypes/default.md`模板中

    ```yaml
    title: "{{ replace .TranslationBaseName "-" " " | title }}"
    date: {{ .Date }}
    lastmod: {{ .Date }}
    draft: true
    keywords: []
    description: ""
    tags: []
    categories: []
    # 如果这一篇内容的作者有些不同
    author: ""
    
    # 如果你在 config.toml 中打开了某些功能,你可以针对某一篇内容关闭它
    comment: false
    toc: false
    # 你也可以为这一篇内容定义另一个许可协议,使用 copyright: "这是另一个协议!"
    copyright: false 
    reward: false
    mathjax: false
    ```

- **设置站点语言:** `/data/even/default.toml`默认使用了中文语言,你可以按需更改。注意:主题只会使用`default.toml`文件,修改其他文件并不会生效。


### Build

如果你修改了 /src/ 目录下的任意文件,你需要重新编译使其生效
```bash
cd ./themes/even/src/
# 安装依赖环境
npm install
# 编译
npm start
```

### 一份完整的 config.toml 配置文件
```toml
baseURL = "http://localhost:1313"
languageCode = "zh-CN"
defaultContentLanguage = "zh-CN"
title = "olOwOlo"
enableRobotsTXT = true
enableEmoji = true
# 自动检测是否包含 中文\韩文\日文
hasCJKLanguage = true

theme = "even"

# 首页显示的文章条目数量,默认为10(可选)
paginate = 5

# Disqus Username(可选)
disqusShortname = "disqus_shortname"

# Google Analytics UA number(可选)
googleAnalytics = "UA-XXXXXXXX-X"

# Copyright of your post(可选)
copyright = "<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/3.0/cn/\" target=\"_blank\" title=\"中国大陆 (CC BY-NC-SA 3.0 CN)\">署名-非商用-相同方式共享 3.0</a>"

[author]
  name = "olOwOlo"

[sitemap]
  changefreq = "weekly"
  priority = 0.5
  filename = "sitemap.xml"

# 目录
[[menu.main]]
  name = "Home"
  weight = 10
  identifier = "home"
  url = "/"
[[menu.main]]
  name = "Archives"
  weight = 20
  identifier = "archives"
  url = "/post/"
[[menu.main]]
  name = "Tags"
  weight = 30
  identifier = "tags"
  url = "/tags/"
[[menu.main]]
  name = "Categories"
  weight = 40
  identifier = "categories"
  url = "/categories/"
[[menu.main]]
  name = "About"
  weight = 50
  identifier = "about"
  url = "/about/"
  
[params]
  # 请勿更改
  version = "2.5.0"
  # 站点建立时间
  since = "2017"
  # 站点信息(可选)
  keywords = ["olOwOlo", "blog", "博客"]
  description = "olOwOlo blog."
  # 归档、标签、分类每页显示的文章数目
  archive-paginate = 50
  
  # 一些全局开关(你可以在每一篇内容的 front matter 中单独关闭某些选项)
  toc = true                # 是否开启目录
  fancybox = true           # 是否启用fancybox(图片可点击)
  bootcdn = true            # 是否使用bootcdn(针对大陆推荐使用)
  mathjax = false           # 是否使用mathjax(数学公式)
  linkToMarkDown = false    # 是否在链接到markdown原始文件(如果你愿意共享你的markdown文件)

  # 文章打赏
  [params.reward]
    enable = true
    wechat = "/path/to/your/image.png"
    alipay = ""
  
  # 第三方服务
  # Changyan
  changyanAppid = ""
  changyanAppkey = ""
  # baidu push
  baidu_push = false
  # Baidu Analytics
  baidu_analytics = ""
  # Baidu Verification
  baidu_verification = ""
  # Google Verification
  google_verification = ""

  # 社交链接
  [params.social]
    a-email = "your@email.com"
    b-stack-overflow = ""
    c-twitter = ""
    d-facebook = ""
    e-linkedin = ""
    f-google = ""
    g-github = ""
    h-weibo = ""
    i-zhihu = ""
    j-douban = ""
    k-pocket = ""
    l-tumblr = ""
```
## License

Released under the [MIT](./LICENSE.md) License.

## 表示感谢

> 移植主题时参考了不少(字母顺序排列)...

- 一个好看的出现在 Quick Start 里的主题: [ananke](https://github.com/budparr/gohugo-theme-ananke)
- 一个好看的源主题: [hexo-theme-even](https://github.com/ahonn/hexo-theme-even)
- 一个好看的国语主题: [hugo-nuo](https://github.com/laozhu/hugo-nuo)