-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
90 lines (76 loc) · 2.45 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
title = "Krishnan Chandra"
baseURL = "/"
languageCode = "en-US"
theme = "hugo-blog-awesome"
# This defines how dates are formatted
defaultContentLanguage = "en-us"
disableKinds = ["RSS"]
# Enable emojis globally
enableEmoji = true
[markup]
[markup.highlight]
style = "monokai"
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
startLevel = 2 # ToC starts from H2
endLevel = 4 # ToC ends at H4
ordered = false # generates <ul> instead of <ol>
[menu]
[[menu.main]]
# The page reference (pageRef) is useful for menu highlighting
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
pageRef = "/"
name = 'Home'
weight = 10
[[menu.main]]
pageRef = "posts"
name = "Posts"
url = '/posts/'
weight = 20
[[menu.main]]
pageRef = "about"
name = "About"
url = '/about/'
weight = 30
[params]
sitename = "Krishnan's Dev Blog"
defaultColor = "auto"
mainSections = ['posts']
toc = false # set to false to disable table of contents 'globally'
goToTop = true # set to false to disable 'go to top' button
# About the author
[params.author]
avatar = "img/profile.png" # put the file in assets folder; also ensure that image has same height and width
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
intro = "Krishnan's Dev Blog"
name = "Krishnan Chandra"
description = "A blog about my random adventures in software development."
[[params.socialIcons]]
name = "github"
url = "https://github.com/krishnan-chandra"
[[params.socialIcons]]
name = "twitter"
url = "https://twitter.com/krishnanc_"
[[params.socialIcons]]
name = "linkedin"
url = "https://linkedin.com/in/krishnanchandra"
[[params.socialIcons]]
name = "email"
url = "mailto:[email protected]"
[[params.socialIcons]]
name = "Rss"
url = "index.xml"
[privacy]
[privacy.disqus]
disable = true
[privacy.googleAnalytics]
disable = true
[privacy.instagram]
disable = true
[privacy.twitter]
disable = true
[privacy.vimeo]
disable = true
[privacy.youtube]
disable = true