-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.toml
78 lines (62 loc) · 1.41 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
baseURL = "https://apmtips.com/"
languageCode = "en"
title = "APM tips"
enableInlineShortcodes = true
theme = "soho"
disqusShortname = "apmtips"
summarylength = 10
enableEmoji = true
googleAnalytics = "UA-56791310-1"
[params]
author = "Sergey Kanzhelev"
description = "APM tips"
## Set one of:
# gravatar = "[email protected]"
profilePicture = "images/kanzhelev.jpg"
copyright = "Sergey Kanzhelev"
license = "Apache 2.0"
licenseURL = "http://www.apache.org/licenses/LICENSE-2.0"
## Set custom theme color.
# themeColor = "#fc2803"
## Set custom CSS and/or JS to override site defaults.
# customCss = ["css/blog.css"]
# customJs = ["js/blog.js"]
## Set as many as you want.
[[params.socialIcons]]
icon = "fa-linkedin"
title = "Linkedin"
url = "#"
[[params.socialIcons]]
icon = "fa-github"
title = "GitHub"
url = "#"
[[params.socialIcons]]
icon = "fa-twitter"
title = "Twitter"
url = "#"
[menu]
[[menu.main]]
name = "Posts"
weight = 100
identifier = "posts"
url = "/posts/"
[[menu.main]]
name = "About"
identifier = "about"
weight = 300
url = "/about/"
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true # if false, you need to provide you own custom CSS
style = "monokai"
tabWidth = 4