-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
79 lines (63 loc) · 1.57 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
baseURL = "https://adamrodger.com"
title = "Adam Rodger"
languageCode = "en"
enableInlineShortcodes = true
theme = "soho"
#summarylength = 10
#enableEmoji = true
[params]
author = "Adam Rodger"
description = "Blog"
## Set one of:
profilePicture = "images/profile.jpg"
copyright = "Adam Rodger"
license = "CC BY-SA 4.0"
licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
## Set custom theme color.
themeColor = "#4e5964"
## 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 = "https://www.linkedin.com/in/adamrodger/"
[[params.socialIcons]]
icon = "fa-github"
title = "GitHub"
url = "https://github.com/adamrodger"
[[params.socialIcons]]
icon = "fa-twitter"
title = "Twitter"
url = "https://twitter.com/adamrodger"
[[params.socialIcons]]
icon = "fa-stack-overflow"
title = "StackOverflow"
url = "https://stackoverflow.com/users/429541/adam-rodger"
# [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 = "dracula"
tabWidth = 4