Skip to content

Commit fa080f2

Browse files
committed
fix hugo config
1 parent 13fe26a commit fa080f2

File tree

3 files changed

+44
-78
lines changed

3 files changed

+44
-78
lines changed

.github/workflows/deploy.yml

-31
This file was deleted.

config.toml

-44
This file was deleted.

hugo.toml

+44-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1-
baseURL = 'https://example.org/'
2-
languageCode = 'en-us'
3-
title = 'My New Hugo Site'
1+
baseURL = "https://hwisu.github.io/"
2+
languageCode = "ko-kr"
3+
title = "hwisu 블로그"
4+
theme = "PaperMod"
5+
6+
# 한글 지원 설정
7+
hasCJKLanguage = true
8+
summaryLength = 30
9+
10+
[params]
11+
# 메인 섹션 설정
12+
mainSections = ["posts"]
13+
# 날짜 포맷
14+
dateFormat = "2006-01-02"
15+
16+
# 프로필 설정
17+
[params.profileMode]
18+
enabled = true
19+
title = "hwisu"
20+
subtitle = "개인 기록 블로그"
21+
22+
# 소셜 아이콘
23+
[[params.socialIcons]]
24+
name = "github"
25+
url = "https://github.com/hwisu"
26+
27+
[menu]
28+
[[menu.main]]
29+
identifier = "posts"
30+
name = ""
31+
url = "/posts/"
32+
weight = 10
33+
34+
[[menu.main]]
35+
identifier = "tags"
36+
name = "태그"
37+
url = "/tags/"
38+
weight = 20
39+
40+
[[menu.main]]
41+
identifier = "about"
42+
name = "소개"
43+
url = "/about/"
44+
weight = 30

0 commit comments

Comments
 (0)