-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
89 lines (77 loc) · 1.89 KB
/
Copy pathhugo.toml
File metadata and controls
89 lines (77 loc) · 1.89 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
82
83
84
85
86
87
88
89
baseURL = 'https://Knight-pray.github.io/'
languageCode = 'ko'
defaultContentLanguage = 'ko'
title = 'Jaeyeon Lee - 이재연'
# Hugo module
[module]
[[module.imports]]
path = "github.com/nunocoracao/blowfish/v2"
# Markup configuration
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# Params configuration
[params]
colorScheme = "blue"
defaultAppearance = "light"
autoSwitchAppearance = true
# Custom CSS
customCSS = ["css/custom.css"]
# Disable background pattern
defaultBackgroundImage = false
# Enable search
enableSearch = true
# Article settings
showDate = true
showDateOnlyInArticle = false
showDateUpdated = false
showAuthor = true
showReadingTime = true
showTableOfContents = true
showTaxonomies = true
showAuthorsBadges = false
showWordCount = false
showSummary = true
sharingLinks = ["linkedin", "twitter", "email"]
# Homepage
[params.homepage]
layout = "profile"
homepageImage = ""
showRecent = true
showRecentItems = 5
showMoreLink = true
showMoreLinkDest = "/posts"
cardView = true
cardViewScreenWidth = false
layoutBackgroundBlur = false
# Author
[params.author]
name = "이재연"
headline = "PhD Student | Battery Research | Dongguk University"
bio = "아연 이온 배터리 및 고체 전해질 연구"
image = "img/author.jpg"
links = [
{ github = "https://github.com/Knight-pray" },
# { email = "mailto:your@email.com" },
# { google-scholar = "https://scholar.google.com/citations?user=xxx" },
]
# Menu configuration
[menus]
[[menus.main]]
name = "About"
pageRef = "about"
weight = 10
[[menus.main]]
name = "Posts"
pageRef = "posts"
weight = 20
# Outputs
[outputs]
home = ["HTML", "RSS", "JSON"]
# Taxonomies
[taxonomies]
tag = "tags"
category = "categories"
author = "authors"
series = "series"