-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
93 lines (73 loc) · 1.63 KB
/
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
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
82
83
84
85
86
87
88
89
90
91
92
93
title = "jinyongp.dev"
baseURL = "https://jinyongp.dev/"
copyright = "Copyright 2023. Jinyong Park. All rights reserved."
defaultContentLanguage = "ko"
hasCJKLanguage = true
timeZone = "Asia/Seoul"
googleAnalytics = "G-SH0YPW4E1C"
enableRobotsTXT = true
paginate = 5
paginatePath = "page"
[sitemap]
changefreq = "daily"
filename = "sitemap.xml"
priority = 0.5
[params]
favicon = "favicon.ico"
description = "Jinyong Park's Personal Dev Blog"
[params.style]
font = "Raleway" # https://fonts.google.com
accent = "65 105 225" # "R G B"
[params.highlight]
theme = "nord" # https://highlightjs.org/static/demo
version = "11.8.0" # https://cdnjs.cloudflare.com/ajax/libs/highlight.js/x.y.z
[params.author]
name = "Jinyong Park"
username = "jinyongp"
email = "[email protected]"
[params.giscus]
repo = "jinyongp/jinyongp.dev"
repoId = "R_kgDOHJDtcg"
category = "Comments"
categoryId = "DIC_kwDOHJDtcs4CXf7o"
lang = "ko"
[markup.goldmark.renderer]
unsafe = true
[[menu.main]]
name = "Home"
pageRef = "/"
weight = 1
[[menu.main]]
name = "Posts"
pageRef = "/posts"
weight = 2
[[menu.main]]
name = "Learn"
pageRef = "/learn"
weight = 3
[[menu.main]]
name = "Series"
pageRef = "/series"
weight = 4
[[menu.icon]]
url = "mailto:[email protected]"
name = "square-envelope"
weight = 1
[[menu.icon]]
url = "https://velog.io/@jinyongp"
name = "square-velog"
weight = 2
[[menu.icon]]
url = "/feed.xml"
name = "square-rss"
weight = 3
[[menu.icon]]
url = "https://github.com/jinyongp/"
name = "square-github"
weight = 4
[outputs]
home = ['HTML', 'RSS']
page = ['HTML', 'RSS']
[outputFormats.RSS]
mediaType = "application/rss+xml"
baseName = "feed"