-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
81 lines (69 loc) · 1.62 KB
/
Copy pathhugo.toml
File metadata and controls
81 lines (69 loc) · 1.62 KB
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
baseURL = "https://jack5316.github.io/Thinking-Machine/"
languageCode = "en-us"
title = "Thinking Machine"
# Enable tags and categories
[taxonomies]
tag = "tags"
category = "categories"
[module]
[[module.mounts]]
source = "content"
target = "content"
[[module.mounts]]
source = "layouts"
target = "layouts"
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "i18n"
target = "i18n"
[params]
env = "production"
description = "A personal blog exploring AI, technology, philosophy, and life"
author = "Jiawei Tan"
# Post display options
ShowReadingTime = true
ShowWordCount = true
ShowPostNavLinks = true
ShowBreadCrumbs = true
ShowCodeCopyButtons = true
ShowShareButtons = true
ShowToc = true
# Related posts
numberOfRelatedPosts = 3
# Home page
disableSpecial1stPost = true
# Edit post link
[params.editPost]
URL = "https://github.com/jack5316/Thinking-Machine/tree/main/content"
Text = "Suggest Changes"
appendFilePath = true
# Social icons in footer
[[params.socialIcons]]
name = "github"
url = "https://github.com/jack5316"
[[params.socialIcons]]
name = "email"
url = "mailto:jiaweitan531@gmail.com"
# Related content configuration
[related]
includeNewer = true
threshold = 50
toLower = true
[[related.indices]]
name = "tags"
weight = 100
[[related.indices]]
name = "categories"
weight = 80
[[related.indices]]
name = "date"
weight = 10
# Minification
[minify]
disableXML = true
minifyOutput = true
# Output formats
[outputs]
home = ["HTML", "RSS", "JSON"]