-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
66 lines (47 loc) · 1.57 KB
/
hugo.toml
File metadata and controls
66 lines (47 loc) · 1.57 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
baseURL = 'https://konstantd.github.io/'
languageCode = 'en-us'
title = 'My C++ Technical Blog'
theme = "PaperMod"
buildFuture = true
[[menu.main]]
name = "About"
url = "/about/"
weight = 200
# 1. Add this to enable the Search Index
[outputs]
home = ["HTML", "RSS", "JSON"]
# 2. Add Search to your Menu
[[menu.main]]
name = "Search"
url = "/search/"
weight = 5 # Weight 5 puts it before "About" (Weight 10)
[[menu.main]]
name = "Tags"
url = "/tags/"
weight = 15
[params]
ShowReadingTime = true
ShowWordCount = true
ShowShareButtons = false
ShowCodeCopyButtons = true
ShowPostMeta = true
ShowFullTextContent = false
HideMeta = false
[params.homeInfoParams]
Title = "Hi there! 👋"
Content = "This is my technical blog, where I will focus on C++ since it is what I am mostly using. I will share my experiences from technical projects I have worked on, as well as the latest developments of C++. I will try to keep the articles short, purely technical and to the point without fluffy additions. I hope you find it useful! :)"
buttons = [
{ name = "Subscribe", url = "/subscribe/" }
]
[params.fuseConfig]
isCaseSensitive = false
shouldSort = true
location = 0
distance = 1000
threshold = 0.4
minMatchCharLength = 0
keys = ["title", "permalink", "summary", "content"]
[params.footer]
customContent = "Built with ❤️ and C++"
[markup.goldmark.renderer]
unsafe = true