-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
108 lines (83 loc) · 2.49 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
97
98
99
100
101
102
103
104
105
106
107
108
# Basics
baseURL = "https://blog.sldk.de"
title = "Leonid Koftun"
languageCode = "en-us"
theme = "hello-friend-ng"
paginate = 10
DefaultContentLanguage = "en"
# Non-standard?
disqusShortname = "blog-sldk-de"
# Build settings
buildDrafts = false
buildFuture = false
buildExpored = false
canonifyURLs = true
# Enable things
enableRobotsTXT = true
enableGitInfo = true
enableEmoji = true
[permalinks]
posts = "/:year/:month/:title/"
[blackfriday]
hrefTargetBlank = true
[taxonomies]
tag = "tags"
category = "categories"
[params]
dateform = "2006-01-02"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04 -0700"
homeSubtitle = "Software Engineer"
# Metadata mostly used in document's head
description = "Leonid's blog"
keywords = ""
images = [""]
# Prefix of link to the git commit detail page. GitInfo must be enabled.
gitUrl = "https://github.com/sladkoff/sladkoff.github.io/commit/"
# Set disableReadOtherPosts to true in order to hide the links to other posts.
disableReadOtherPosts = false
readOtherPosts = "Read More"
enableSharingButtons = false
goatCounterUrl = "https://sldk.goatcounter.com/count"
# Integrate Javascript files or stylesheets by adding the url to the external assets or by
# linking local files with their path relative to the static folder, e.g. "css/styles.css"
customCSS = ["/css/prism.css", "/css/style.css"]
customJS = ["/js/prism.js"]
themeColor = "#2ecc71"
[params.logo]
logoText = "$ cd /home/"
logoHomeLink = "/"
# Social icons
[[params.social]]
name = "email"
url = "mailto:[email protected]"
[[params.social]]
name = "github"
url = "https://github.com/sladkoff"
[[params.social]]
name = "linkedin"
url = "https://www.linkedin.com/in/leonidkoftun"
[[params.social]]
name = "instagram"
url = "https://instagram.com/sladkoff2"
[[params.social]]
name = "twitter"
url = "https://twitter.com/sladkovik"
[[params.social]]
name = "stackoverflow"
url = "https://stackoverflow.com/users/1510659"
[languages]
[languages.en]
subtitle = "Software Engineer"
weight = 1
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
[menu]
[[menu.main]]
identifier = "about"
name = "About"
url = "/about"
[[menu.main]]
identifier = "posts"
name = "Posts"
url = "/posts"