-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
86 lines (79 loc) · 2.24 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
baseURL = '/'
languageCode = 'en-us'
title = 'Rushi Panchariya'
# Google Analytics setup by environment variable
# HUGO_GOOGLEANALYTICS
# googleAnalytics = ''
enableGitInfo = true
[markup]
[markup.tableOfContents]
endLevel = 5
ordered = true
startLevel = 2
[params]
contentTypeName = "posts"
themeColor = "blue"
showMenuItems = 4
centerTheme = true
autoCover = true
showLastUpdated = false
readingTime = true
fullWidthTheme = false
hideComments = false
[params.twitter]
# set Twitter handles for Twitter cards
# see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
# do not include @
creator = "RushiPanchariya"
site = "RushiPanchariya"
[languages]
[languages.en.params]
languageName = "English"
title = "RushiPanchariya"
subtitle = "Personal Insights, Blogs, and Notes"
owner = "Rushi"
keywords = ""
copyright = ""
menuMore = "Show more"
readMore = "Read more"
readOtherPosts = "Read other posts"
newerPosts = "Newer posts"
olderPosts = "Older posts"
missingContentMessage = "Page not found..."
missingBackButtonLabel = "Back to home page"
minuteReadingTime = "min read"
words = "words"
[languages.en.params.logo]
logoText = "Rushi Panchariya"
logoHomeLink = "/"
[languages.en.menu]
[[languages.en.menu.main]]
identifier = "about"
name = "About"
url = "/about"
weight = 1
[[languages.en.menu.main]]
identifier = "notes"
name = "Notes"
url = "/notes"
weight = 3
[[languages.en.menu.main]]
identifier = "projects"
name = "Projects"
url = "/projects"
weight = 2
[[languages.en.menu.main]]
identifier = "resume"
name = "Resume"
url = "/resume"
weight = 4
[[languages.en.menu.main]]
identifier = "archive-site"
name = "Archive site"
url = "https://archive.ruship.dev"
weight = 5
[module]
# this is needed when you fetch the theme as a submodule to your repo.
replacements = "github.com/panr/hugo-theme-terminal -> themes/terminal"
[[module.imports]]
path = 'github.com/panr/hugo-theme-terminal/v3'