-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
34 lines (29 loc) · 872 Bytes
/
hugo.toml
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
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'Link Tree'
theme = "lynx"
enableEmoji = true
disableKinds = ["taxonomy", "term"]
[params]
attribution = false
[params.author]
name = "Mirai Kumiko"
headline = "My example link tree^^~"
image = "images/avatar.jpg"
links = [
{ link = { href = "https://example.com", text = "Website" } },
{ youtube = "https://example.com" },
{ twitch = "https://example.com" },
{ instagram = "https://example.com" },
{ telegram = "https://example.com" },
{ x = "https://example.com" },
{ linkedin = "https://example.com" },
{ mastodon = "https://example.com" },
{ bluesky = "https://example.com" },
{ patreon = "https://example.com" }
]
[markup.highlight]
noClasses = false
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true