-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
96 lines (80 loc) · 2.72 KB
/
config.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
94
95
96
baseURL = 'https://ankushKun.github.io'
languageCode = 'en-us'
title = 'Ankush Singh'
theme = 'terminal'
[params]
contentTypeName = "posts"
# ["orange", "blue", "red", "green", "pink"]
themeColor = "orange"
showMenuItems = 4
showLanguageSelector = false
fullWidthTheme = false
centerTheme = true
# if your resource directory contains an image called `cover.(jpg|png|webp)`,
# then the file will be used as a cover automatically.
# With this option you don't have to put the `cover` param in a front-matter.
autoCover = true
# set post to show the last updated
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
# showLastUpdated = false
# set a custom favicon (default is a `themeColor` square)
favicon = "laptop.png"
# Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
# updatedDatePrefix = "Updated"
# set all headings to their default size (depending on browser settings)
# oneHeadingSize = true # default
# whether to show a page's estimated reading time
# readingTime = false # default
# whether to show a table of contents
# can be overridden in a page's front-matter
# Toc = false # default
# set title for the table of contents
# can be overridden in a page's front-matter
# TocTitle = "Table of Contents" # default
[markup.goldmark.renderer]
# Allows html tags in md files
unsafe = true
[languages]
[languages.en]
languageName = "English"
title = "Ankush Singh"
subtitle = "Checkout my Portfolio Page"
# owner = "Ankush Singh"
keywords = "blog, portfolio, timeline, showcase, website"
copyright = "© Ankush Singh"
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"
[languages.en.params.logo]
logoText = "Ankush Singh"
logoHomeLink = "/"
[languages.en.menu]
[[languages.en.menu.main]]
identifier = "about"
name = "About"
# url = "/about"
url = "/"
weight = 1
[[languages.en.menu.main]]
identifier = "blog"
name = "Blog"
url = "/posts"
weight = 2
[[languages.en.menu.main]]
identifier = "timeline"
name = "Timeline"
url = "/timeline"
weight = 3
[[languages.en.menu.main]]
identifier = "links"
name = "Links"
url = "/links"
weight = 4
[[languages.en.menu.main]]
identifier = "credits"
name = "Credits"
url = "/credits"