blob: 0f9a00153522d81179f7822f063a2dd44c2fa562 (
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
|
### **Concise**
A minimalist Hugo theme focused on writing.



---
### **Features**
- **Extremely Minimalist Design**
- **No Unnecessary Features**
- **Focus on the Essence of Blogging**
---
### **Quick Start**
```bash
git clone https://github.com/yingyu5658/hugo-theme-concise.git themes/concise
```
Add the following configuration to `hugo.toml` in your site's root directory:
```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 = "Archives"# Posts archive
url = "/post"
[[params.homepage.content]]
name = "Links"# Friend links
url = "/links"
[[params.homepage.content]]
name = "About"
url = "/about"
[[params.homepage.content]]
name = "RSS"
url = "/atom.xml"
[params.footer]
content = "Email: YOUR_EMAIL"
[markup.highlight]
noClasses = true
style = "emacs"# Options: github, emacs, solarized-light, etc.
[outputFormats.RSS]
baseName = "atom"
```
---
### **Comments**
- **Waline Comment System Support**
Modify `serverURL` in `layouts/_default/single.html`:
```html
<script type="module">
import { init } from 'https://unpkg.com/@waline/client@v3/dist/waline.js';
init({
el: '#waline',
serverURL: '' // ← Replace with your Waline server URL
});
</script>
```
|