-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
101 lines (82 loc) · 2.38 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
baseURL = "https://netprog.org/"
languageCode = "en-us" # For RSS, view https://www.rssboard.org/rss-language-codes
defaultContentLanguage = "en" # For HTML page, now support: en, zh-hans, zh-hant, ja, nl, pl, it
title = "The Network Programmability"
theme = "fuji"
# summaryLength = 100 # Custom summary length, add <!--more--> in post file to custom split point
# paginate = 10
googleAnalytics = "G-MSSK5N5R34" # Set your Google tags ID
[outputFormats]
[outputFormats.SearchIndex]
isPlainText = true
notAlternative = true
mediaType = "application/json"
path = "/search/"
[outputs]
home = ["HTML", "RSS", "SearchIndex"]
[permalinks]
post = "/:section/:filename/" # Custom post links, e.g. "/:year/:month/:title/"
[params]
author = "Andrey Grechin"
subTitle = "Network programmability bits"
defaultTheme = "dark" # default theme when first visit (auto|dark|light)
sourceURL = "https://github.com/andreygrechin/netprog.org"
# Word counter and read time indicator in post metadata
showWordCounter = false
showReadTime = true
# License in the footer
showLicenseInFooter = true
# License at the end of each post
showLicense = false
showToc = true
# Copyright
copyrightStartYear = "2021"
# Posts shown in homepage
mainSections = ["posts"]
# License
license = "CC BY 4.0"
licenseLink = "https://creativecommons.org/licenses/by/4.0/"
# Let images display in full brightness under dark mode
disableDarkImage = true
[taxonomies]
tag = "tags"
[menu]
[[menu.nav]]
name = "Home"
url = "/"
weight = 1
[[menu.nav]]
name = "Posts"
url = "/posts/"
weight = 2
[[menu.nav]]
name = "About"
url = "/about/"
weight = 3
[[menu.nav]]
name = "RSS"
url = "/index.xml"
weight = 4
[[menu.link]]
name = "GitHub"
url = "https://github.com/andreygrechin"
weight = 1
[[menu.link]]
name = "Twitter"
url = "https://twitter.com/andreygrechin"
weight = 2
[[menu.link]]
name = "LinkedIn"
url = "https://www.linkedin.com/in/agrechin/"
weight = 3
# [deployment]
# By default, files are uploaded in an arbitrary order.
# Files that match the regular expressions in the "Order" list
# will be uploaded first, in the listed order.
# order = [".jpg$", ".gif$", ".png$"]
# [[deployment.targets]]
# An arbitrary name for this target.
# name = "aws"
# S3; see https://gocloud.dev/howto/blob/#s3
# For S3-compatible endpoints, see https://gocloud.dev/howto/blob/#s3-compatible
# URL = "s3://<Bucket Name>?region=<AWS region>"