aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: ef12d8a149d3ac6bd335948586ff46fa8a1cab27 (plain) (blame)
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
# Concise

一个简约的Hugo主题。专注于写作。

![homepage](./images/homepage.png)
![post](./images/post.png)
![single](./images/single.png)

## Features

- 极致简约设计
- 无多余功能
- 回归博客本质

## Quickstart

```bash
git clone https://github.com/yingyu5658/hugo-theme-concise.git themes/concise
```

在站点根目录`hugo.toml`中填入以下配置:

```toml
baseURL = "..."
publishDir = "public"
title = "YOUR_WEBSITE_TITLE"
description = "SUBTITLE"
languageCode = "zh-CN"
theme = ["concise"]
pagination = { pagerSize = 25 }

[permalinks]
posts = "YOUR_PERMALINKS"

[params]
[[params.homepage.content]]
name = "文章归档"
url = "/post"

[[params.homepage.content]]
name = "友情链接"
url = "/links"

[[params.homepage.content]]
name = "关于"
url = "/about"

[[params.homepage.content]]
name = "RSS"
url = "/atom.xml"

[params.footer]
content = "Email: YOUR_EMAIL"

[markup.highlight]
noClasses = true 
style = "emacs"    #github、emacs、solarized-light 等

[outputFormats.RSS]
  baseName = "atom"
```

## Comments

- 支持Waline评论系统

在`layouts/_default/single.html`中修改serverURL

```html
<script type="module">
	import { init } from 'https://unpkg.com/@waline/client@v3/dist/waline.js';
	init({
		el: '#waline',
		serverURL: ''
                ^^^^^^^
            替换为你的serverURL
	});
</script>
```