-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
75 lines (63 loc) · 1.92 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
baseURL = "http://ryouze.net/"
title = "ryouze"
theme = "gokarna"
languageCode = "en"
defaultContentLanguage = "en"
enableEmoji = true
enableRobotsTXT = true
pygmentsStyle = "monokai" # Code highlighting style
contentDir = "content"
enableGitInfo = true
[params]
# Landing page
## Avatar
avatarURL = "https://avatars.githubusercontent.com/u/98982999"
AvatarAltText = "avatar"
avatarSize = "size-l" # size-xs, size-s, size-m, size-l & size-xl (default: size-m)
## Title
description = "Researcher | Programmer"
## Icons with links below the avatar the title / description: https://github.com/526avijitgupta/gokarna/tree/main/static/svg/icons
socialIcons = [
{name = "github", url = "https://github.com/ryouze"},
{name = "email", url = "mailto:mirai@ryouze.net"}
]
## Posts: "popular" (order posts by weight), "recent" (order posts by date) or "" (do not display, default option)
showPostsOnHomePage = "recent"
# Appearance
## Display "back to top" button on posts
ShowBackToTopButton = true
## Date format
dateFormat = "02.01.2006 @ 15:04"
## Previous and Next buttons (will not work with the ".Weight" parameter)
togglePreviousAndNextButtons = "true"
# Misc
## SEO
metaKeywords = ["ryouze", "GitHub", "Tutorial", "Programming", "Blog", "C++", "Python", "macOS", "GNU/Linux"]
[menu]
[[menu.main]]
name = "Home"
pre = "<span data-feather='home'></span>"
url = "/"
weight = 1
[[menu.main]]
name = "Projects"
pre = "<span data-feather='code'></span>"
url = "/projects/"
weight = 2
[[menu.main]]
name = "Posts"
pre = "<span data-feather='book'></span>"
url = "/posts/"
weight = 3
[[menu.main]]
name = "Github"
pre = "<span data-feather='github'></span>"
url = "https://github.com/ryouze/"
weight = 4
[menu.main.params]
newPage = true
[markup]
[markup.tableOfContents]
startLevel = 1
endLevel = 4
ordered = false